{"info":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","description":"<html><head></head><body><p>Below you'll find the general flow for creating a quote, presenting it to the customer, making payment, and handling confirmation emails and policy documents. We have supplemental endpoints under the Additional Endpoints section to help support variations of this flow, where needed.</p>\n<h1 id=\"high-level-flow\">High Level Flow</h1>\n<p>There are 3 primary steps in the process of selling insurance products:</p>\n<p><strong>Step 1:</strong> Create a quote to present to your customer. You can generate a quote by calling our Create Quote endpoint.</p>\n<p><strong>Step 2:</strong> Once your customer decides to move forward with the purchase, you create an Order using our Order endpoint. This Order will be put into a pending status in our system.</p>\n<p><strong>Step 3:</strong> Once the transaction is finalized, the Order is moved to an approved status by using one of our Payment endpoints.</p>\n<h1 id=\"general-points\">General Points</h1>\n<p>• The API conforms to the REST architecture<br>• Data sent in the request and response bodies are encoded in JSON<br>• Request must be performed from a registered IP<br>• Access to the API is controlled via a bearer token which will be provided to you<br>• All requests must include these two required HTTP headers:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Content-Type</td>\n<td>application/json</td>\n</tr>\n<tr>\n<td>Authorization</td>\n<td>Bearer</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h1 id=\"error-handling\">Error Handling</h1>\n<h3 id=\"general-information\">General Information</h3>\n<p>HTTP status codes are used to determine whether an API call has been successful. If the status code is in the form of 2xx this would signify that the call was successful. Any other status code would mean that the call was unsuccessful.</p>\n<h3 id=\"error-codes\">Error Codes</h3>\n<h4 id=\"400\">400</h4>\n<p>Premium does not match or sanction search failed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    “error”: “Different premium value provided.”\n}\n\n</code></pre>\n<h4 id=\"401\">401</h4>\n<p>This is returned in case of an unauthorised access to a resource. The reason for this can vary from the token being invalid to trying to access a resource that the token is not allowed to access. Make sure that the token that you are using has been copied fully in the Authorization header. Example of an error returned is the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    “error”: “Expired or Invalid JWT Token.”\n}\n\n</code></pre>\n<h4 id=\"401-1\">401</h4>\n<p>This is mostly returned if the URL of the request is incorrect.</p>\n<h4 id=\"406\">406</h4>\n<p>This signifies that data sent in the request is incorrect. Go through the documentation for the call and make sure that the request body parameters meet the criteria mentioned. Example of an error received is the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    “error”: “Product ID not provided.”\n}\n\n</code></pre>\n<h4 id=\"422\">422</h4>\n<p>Validation error. For example, if the trip start date is in the past:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    “error”: “trip start date is not equal to or after 2025-01-01”\n}\n\n</code></pre>\n<h4 id=\"5xx\">5xx</h4>\n<p>This is a server related error and this should not be a common occurrence. If this is encountered, please contact <a href=\"https://\">it@battleface.com</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"High Level Flow","slug":"high-level-flow"},{"content":"General Points","slug":"general-points"},{"content":"Error Handling","slug":"error-handling"}],"owner":"29132000","collectionId":"547241a1-e4e6-4769-b0bc-4f197a221a67","publishedId":"2sAYBVhrpn","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-11-26T20:19:13.000Z"},"item":[{"name":"Partner API","item":[{"name":"Quotes","item":[{"name":"Create Quote","event":[{"listen":"test","script":{"exec":["pm.environment.set(\"quote_number\", JSON.parse(responseBody).data.quote_number);\r","pm.environment.set(\"quote_id\", JSON.parse(responseBody).data.id);"],"type":"text/javascript","packages":{},"id":"e9a163f1-c3e3-4c62-8712-ba4f037b0f83"}}],"id":"0e247873-6794-4222-8b72-2fdc9228ddba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2023-01-12\", // required\r\n    \"end_date\": \"2023-01-24\", // required\r\n    \"deposit_date\": \"2023-01-01\", \r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true, // required\r\n            \"dob\": \"1998-01-01\", // required\r\n            \"trip_cost\": 250 // required\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}}, // required\r\n    \"host_country\": \"{{country_code}}\", // required\r\n    \"host_country_state\": \"{{host_country_state_code}}\", // required for Canada, Switzerland, and United States\r\n    \"currency\": \"USD\", // required\r\n    \"destinations\": [ // required\r\n        \"US\"\r\n    ],\r\n    \"packages\": [ // required\r\n        \"base_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"ef16af61-b368-4c2f-afee-4a1abe76ecb6","id":"ef16af61-b368-4c2f-afee-4a1abe76ecb6","name":"Quotes","type":"folder"}},"urlObject":{"path":["api","partner","quote"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"de886174-1fbf-4ded-ad67-8ba7f2a3a60f","name":"Generic Simple","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2022-12-12\",\r\n    \"end_date\": \"2022-12-24\",\r\n    \"deposit_date\": \"2022-12-01\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"dob\": \"1998-01-01\",\r\n            \"trip_cost\": 250\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"currency\": \"USD\",\r\n    \"destinations\": [\r\n        \"DE\"\r\n    ],\r\n    \"packages\": [\r\n        \"base_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 08 Dec 2022 15:12:59 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6391fefbeb0b304375052e72\",\n        \"id\": \"6391fefbeb0b304375052e72\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC82073-1007\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1007\",\n        \"quoted_price\": 22.75,\n        \"taxes\": {\n            \"stamp_duty\": null,\n            \"witholding\": null\n        },\n        \"deductibles\": {\n            \"excess_fee\": null\n        },\n        \"currency_id\": \"USD\",\n        \"host_country\": \"US\",\n        \"host_country_state\": \"AL\",\n        \"trip_length\": 13,\n        \"start_date\": \"2022-12-12\",\n        \"end_date\": \"2022-12-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-08 03:12:12\",\n        \"updated_at\": \"2022-12-08 03:12:12\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 76,\n                \"package_alias\": \"base_package\",\n                \"amount\": 22.75,\n                \"type\": \"Base Package\",\n                \"value\": null,\n                \"detail\": null\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 24,\n                \"dob\": \"1998-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 250\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"2d15478a-d43f-4f05-a741-bc0c55819fc8","name":"Aus Generic - Dynamic Package Ids","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2022-12-12\",\r\n    \"end_date\": \"2022-12-24\",\r\n    \"deposit_date\": \"2022-12-01\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"age\": 25\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"currency\": \"AUD\",\r\n    \"destinations\": [\r\n        \"DE\"\r\n    ],\r\n    \"deductibles\": {\r\n        \"excess_fee\" : 250\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"id\": 84,\r\n            \"levels\": [\r\n                {\r\n                    \"id\": 395\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 12 Dec 2022 09:36:02 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6396f6025d0e14e9710cfdd2\",\n        \"id\": \"6396f6025d0e14e9710cfdd2\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC97822-1008\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1008\",\n        \"quoted_price\": 53.37,\n        \"taxes\": {\n            \"stamp_duty\": 0.46,\n            \"witholding\": 1.54\n        },\n        \"deductibles\": {\n            \"excess_fee\": 250\n        },\n        \"currency_id\": \"AUD\",\n        \"host_country\": \"AU\",\n        \"host_country_state\": \"NSW\",\n        \"trip_length\": 13,\n        \"start_date\": \"2022-12-12\",\n        \"end_date\": \"2022-12-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-12 09:12:36\",\n        \"updated_at\": \"2022-12-12 09:12:36\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"Travel Medical Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"level\",\n                \"value\": 395,\n                \"detail\": \"Unlimited\"\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 25,\n                \"dob\": null,\n                \"trip_cost\": 0\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"c44e0a7c-9a95-43e1-90f3-d589c7abe64d","name":"Aus Generic - Aliasing Package Ids","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2022-12-12\",\r\n    \"end_date\": \"2022-12-24\",\r\n    \"deposit_date\": \"2022-12-01\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"age\": 25\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"currency\": \"AUD\",\r\n    \"destinations\": [\r\n        \"DE\"\r\n    ],\r\n    \"deductibles\": {\r\n        \"excess_fee\" : 250\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"id\": \"travel_medical_package\",\r\n            \"levels\": [\r\n                {\r\n                    \"id\": 395\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 12 Dec 2022 09:37:24 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6396f654e99fccd4210a22b2\",\n        \"id\": \"6396f654e99fccd4210a22b2\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC63718-1008\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1008\",\n        \"quoted_price\": 53.37,\n        \"taxes\": {\n            \"stamp_duty\": 0.46,\n            \"witholding\": 1.54\n        },\n        \"deductibles\": {\n            \"excess_fee\": 250\n        },\n        \"currency_id\": \"AUD\",\n        \"host_country\": \"AU\",\n        \"host_country_state\": \"NSW\",\n        \"trip_length\": 13,\n        \"start_date\": \"2022-12-12\",\n        \"end_date\": \"2022-12-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-12 09:12:37\",\n        \"updated_at\": \"2022-12-12 09:12:37\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"Travel Medical Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"level\",\n                \"value\": 395,\n                \"detail\": \"Unlimited\"\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 25,\n                \"dob\": null,\n                \"trip_cost\": 0\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"a1835ecd-5d75-4ddc-8919-e69ca080c5f2","name":"Aus Generic - Simplified Aliased Packages","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2022-12-12\",\r\n    \"end_date\": \"2022-12-24\",\r\n    \"deposit_date\": \"2022-12-01\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"age\": 25\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"currency\": \"AUD\",\r\n    \"destinations\": [\r\n        \"DE\"\r\n    ],\r\n    \"deductibles\": {\r\n        \"excess_fee\" : 250\r\n    },\r\n    \"packages\": [\r\n        \"travel_medical_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 12 Dec 2022 09:38:41 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6396f6a162b62f4819090122\",\n        \"id\": \"6396f6a162b62f4819090122\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC95657-1008\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1008\",\n        \"quoted_price\": 53.37,\n        \"taxes\": {\n            \"stamp_duty\": 0.46,\n            \"witholding\": 1.54\n        },\n        \"deductibles\": {\n            \"excess_fee\": 250\n        },\n        \"currency_id\": \"AUD\",\n        \"host_country\": \"AU\",\n        \"host_country_state\": \"NSW\",\n        \"trip_length\": 13,\n        \"start_date\": \"2022-12-12\",\n        \"end_date\": \"2022-12-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-12 09:12:38\",\n        \"updated_at\": \"2022-12-12 09:12:38\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"Travel Medical Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"level\",\n                \"value\": 395,\n                \"detail\": \"Unlimited\"\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 25,\n                \"dob\": null,\n                \"trip_cost\": 0\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"09bc6b34-e07f-447f-832b-1ad4f7f5e228","name":"Aus Generic - Date conditions","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2022-12-12\",\r\n    \"end_date\": \"2022-12-24\",\r\n    \"deposit_date\": \"2022-12-01\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"age\": 25\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"currency\": \"AUD\",\r\n    \"destinations\": [\r\n        \"DE\"\r\n    ],\r\n    \"deductibles\": {\r\n        \"excess_fee\" : 250\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"id\": \"travel_medical_package\",\r\n            \"levels\": [\r\n                {\r\n                    \"id\": 395\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"id\" : \"rental_vehicle_damage_package\",\r\n            \"conditions\": [\r\n                {\r\n                    \"start_date\": \"2022-01-12\",\r\n                    \"end_date\" : \"2022-02-23\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 12 Dec 2022 09:41:23 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6396f743fb0ac886ea0ced02\",\n        \"id\": \"6396f743fb0ac886ea0ced02\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC60824-1008\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1008\",\n        \"quoted_price\": 171.18,\n        \"taxes\": {\n            \"stamp_duty\": 1.48,\n            \"witholding\": 4.94\n        },\n        \"deductibles\": {\n            \"excess_fee\": 250\n        },\n        \"currency_id\": \"AUD\",\n        \"host_country\": \"AU\",\n        \"host_country_state\": \"NSW\",\n        \"trip_length\": 13,\n        \"start_date\": \"2022-12-12\",\n        \"end_date\": \"2022-12-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-12 09:12:41\",\n        \"updated_at\": \"2022-12-12 09:12:41\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"Travel Medical Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 90,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 117.81,\n                \"type\": \"Rental Vehicle Damage Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"level\",\n                \"value\": 395,\n                \"detail\": \"Unlimited\"\n            },\n            {\n                \"package_id\": 90,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 117.81,\n                \"type\": \"level\",\n                \"value\": 461,\n                \"detail\": \"43 days\"\n            },\n            {\n                \"package_id\": 90,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 117.81,\n                \"type\": \"condition\",\n                \"value\": \"2022-01-12\",\n                \"detail\": \"start_date\"\n            },\n            {\n                \"package_id\": 90,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 117.81,\n                \"type\": \"condition\",\n                \"value\": \"2022-02-23\",\n                \"detail\": \"end_date\"\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 25,\n                \"dob\": null,\n                \"trip_cost\": 0\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"d7c612d4-1552-447c-90b0-5ce9eed056b9","name":"Aus Generic Level Alias","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2023-01-12\",\r\n    \"end_date\": \"2023-01-24\",\r\n    \"deposit_date\": \"2022-12-01\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"age\": 25\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"currency\": \"AUD\",\r\n    \"destinations\": [\r\n        \"DE\"\r\n    ],\r\n    \"deductibles\": {\r\n        \"excess_fee\" : 250\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"id\": \"travel_medical_package\",\r\n            \"conditions\": [\r\n                {\r\n                    \"level\": \"Unlimited\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"id\": \"trip_interruption_package\",\r\n            \"conditions\": [\r\n                {\r\n                    \"level\": \"40000\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 15 Dec 2022 12:17:33 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"639b105d75b67820c10d19b2\",\n        \"id\": \"639b105d75b67820c10d19b2\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC61519-1008\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1008\",\n        \"quoted_price\": 319.7,\n        \"taxes\": {\n            \"stamp_duty\": 2.77,\n            \"witholding\": 9.22\n        },\n        \"deductibles\": {\n            \"excess_fee\": 250\n        },\n        \"currency_id\": \"AUD\",\n        \"host_country\": \"AU\",\n        \"host_country_state\": \"NSW\",\n        \"trip_length\": 13,\n        \"start_date\": \"2023-01-12\",\n        \"end_date\": \"2023-01-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-15 12:12:17\",\n        \"updated_at\": \"2022-12-15 12:12:17\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"Travel Medical Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 85,\n                \"package_alias\": \"trip_interruption_package\",\n                \"amount\": 266.33,\n                \"type\": \"Trip Interruption Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 84,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 53.37,\n                \"type\": \"level\",\n                \"value\": 395,\n                \"detail\": \"Unlimited\"\n            },\n            {\n                \"package_id\": 85,\n                \"package_alias\": \"trip_interruption_package\",\n                \"amount\": 266.33,\n                \"type\": \"level\",\n                \"value\": 407,\n                \"detail\": \"40000\"\n            },\n            {\n                \"package_id\": 85,\n                \"package_alias\": \"trip_interruption_package\",\n                \"amount\": 266.33,\n                \"type\": \"condition\",\n                \"value\": \"40000\",\n                \"detail\": \"level\"\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 25,\n                \"dob\": null,\n                \"trip_cost\": 0\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"5d534272-ee0a-4dc7-af3c-04e5418284c8","name":"Aus Generic - Multiple Level Example","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2024-03-01\",\r\n    \"end_date\": \"2024-03-31\",\r\n    \"deposit_date\": \"2024-03-01\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": false,\r\n            \"age\": 33\r\n        },\r\n        {\r\n            \"is_main\": true,\r\n            \"age\": 33,\r\n            \"dob\": \"1991-01-01\"\r\n        }\r\n    ],\r\n    \"product\": 1008,\r\n    \"host_country\": \"AU\",\r\n    \"host_country_state\": \"TAS\",\r\n    \"currency\": \"AUD\",\r\n    \"destinations\": [\r\n        \"FR\", \"CA\", \"JP\"\r\n    ],\r\n    \"deductibles\": {\r\n        \"excess_fee\": 100\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"id\": \"travel_medical_package\",\r\n            \"conditions\": [\r\n                {\r\n                    \"level\": \"Unlimited\"\r\n                }\r\n            ]\r\n        },\r\n        \"pet_cover\",\r\n        {\r\n            \"id\": \"rental_vehicle_damage_package\",\r\n            \"conditions\": [\r\n                {\r\n                    \"start_date\": \"2024-03-10\",\r\n                    \"end_date\": \"2024-03-21\"\r\n                },\r\n                {\r\n                    \"level\": \"8000\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 15 Dec 2022 12:17:33 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"65e18c1443116620380fab4e\",\n        \"id\": \"65e18c1443116620380fab4e\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-MAR73541-1008\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1008\",\n        \"product_uuid\": \"72c27e58-92f1-4d2a-a811-7905b1e9e8d6\",\n        \"quoted_price\": 764.12,\n        \"taxes\": {\n            \"stamp_duty\": 7.56,\n            \"witholding\": 22.7,\n            \"tax\": null\n        },\n        \"discounts\": {\n            \"amount\": 0\n        },\n        \"deductibles\": {\n            \"excess_fee\": 100\n        },\n        \"currency_id\": \"AUD\",\n        \"host_country\": \"AU\",\n        \"host_country_state\": \"TAS\",\n        \"trip_length\": 31,\n        \"start_date\": \"2024-03-01\",\n        \"end_date\": \"2024-03-31\",\n        \"deposit_date\": \"2024-03-01\",\n        \"created_at\": \"2024-03-01 08:03:04\",\n        \"updated_at\": \"2024-03-01 08:03:04\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 5522,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 625.56,\n                \"type\": \"Travel Medical Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 5528,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 136.52,\n                \"type\": \"Rental Vehicle Damage Package\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 5532,\n                \"package_alias\": \"pet_cover\",\n                \"amount\": 2.04,\n                \"type\": \"Pet Cover\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 5522,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 625.56,\n                \"type\": \"level\",\n                \"value\": 14994,\n                \"detail\": \"Unlimited\"\n            },\n            {\n                \"package_id\": 5522,\n                \"package_alias\": \"travel_medical_package\",\n                \"amount\": 625.56,\n                \"type\": \"condition\",\n                \"value\": \"Unlimited\",\n                \"detail\": \"level\"\n            },\n            {\n                \"package_id\": 5528,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 136.52,\n                \"type\": \"level\",\n                \"value\": 15029,\n                \"detail\": \"12 days\"\n            },\n            {\n                \"package_id\": 5528,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 136.52,\n                \"type\": \"condition\",\n                \"value\": \"2024-03-10\",\n                \"detail\": \"start_date\"\n            },\n            {\n                \"package_id\": 5528,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 136.52,\n                \"type\": \"condition\",\n                \"value\": \"2024-03-21\",\n                \"detail\": \"end_date\"\n            },\n            {\n                \"package_id\": 5528,\n                \"package_alias\": \"rental_vehicle_damage_package\",\n                \"amount\": 136.52,\n                \"type\": \"condition\",\n                \"value\": \"8000\",\n                \"detail\": \"level\"\n            },\n            {\n                \"package_id\": 5532,\n                \"package_alias\": \"pet_cover\",\n                \"amount\": 2.04,\n                \"type\": \"level\",\n                \"value\": 15389,\n                \"detail\": \"1400\"\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": false,\n                \"age\": 33,\n                \"dob\": null,\n                \"trip_cost\": 0\n            },\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 33,\n                \"dob\": \"1991-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 0\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        },\n        \"fees\": [],\n        \"destinations\": [\n            {\n                \"country\": \"CA\",\n                \"risk_index\": 4\n            },\n            {\n                \"country\": \"FR\",\n                \"risk_index\": 4\n            },\n            {\n                \"country\": \"JP\",\n                \"risk_index\": 4\n            }\n        ]\n    }\n}"},{"id":"14f58769-cc74-45cb-a27b-b1ab179e5a96","name":"Hamilton ST","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2024-12-12\",\r\n    \"end_date\": \"2024-12-23\",\r\n    \"deposit_date\": \"2024-04-29\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"dob\": \"1998-01-01\",\r\n            \"trip_cost\": 250\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"GB\",\r\n    \"currency\": \"GBP\",\r\n    \"destination_groups\": [\r\n        \"Tier 2\"\r\n    ],\r\n    \"deductibles\": {\r\n        \"excess_fee\" : 250\r\n    },\r\n    \"packages\": [\r\n       \"base_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"662fb6adc80a75f66c09198b\",\n        \"id\": \"662fb6adc80a75f66c09198b\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-APR35346-1013\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1013\",\n        \"product_uuid\": \"c270c22f-e91d-41f5-9c6a-92a2b4a4440e\",\n        \"quoted_price\": 65.34,\n        \"taxes\": {\n            \"stamp_duty\": null,\n            \"witholding\": null,\n            \"gst\": null,\n            \"tax\": 10.89\n        },\n        \"discounts\": {\n            \"amount\": 0\n        },\n        \"deductibles\": {\n            \"excess_fee\": 250\n        },\n        \"currency_id\": \"GBP\",\n        \"host_country\": \"GB\",\n        \"host_country_state\": null,\n        \"trip_length\": 12,\n        \"start_date\": \"2024-12-12\",\n        \"end_date\": \"2024-12-23\",\n        \"deposit_date\": \"2024-04-29\",\n        \"created_at\": \"2024-04-29 03:04:03\",\n        \"updated_at\": \"2024-04-29 03:04:03\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 2004,\n                \"package_alias\": \"base_package\",\n                \"amount\": 54.45,\n                \"type\": \"Base Package\",\n                \"value\": null,\n                \"detail\": null\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 26,\n                \"dob\": \"1998-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 250\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        },\n        \"fees\": [],\n        \"destination_groups\": [\n            {\n                \"name\": \"TIER 2\"\n            }\n        ]\n    }\n}"},{"id":"9e49b8ae-584b-4d83-a5c2-9fa335cd11e0","name":"Hamilton AMT","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2024-12-12\",\r\n    \"end_date\": \"2025-12-12\",\r\n    \"deposit_date\": \"2024-04-29\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"dob\": \"1998-01-01\",\r\n            \"trip_cost\": 250\r\n        }\r\n    ],\r\n    \"product\": {{api_product_id}},\r\n    \"host_country\": \"GB\",\r\n    \"currency\": \"GBP\",\r\n    \"destinations\": [\r\n        \"US\"\r\n    ],\r\n    \"packages\": [\r\n        \"base_package\",\r\n        \"medex_inc_evac_repat_package\",\r\n        \"accidental_death_package\",\r\n        \"money_package\",\r\n        \"personal_liability_package\",\r\n        \"legal_expenses_package\",\r\n        \"hijack_package\",\r\n        \"travel_delay_package\",\r\n        \"trip_cancellation_package\",\r\n        \"additional_baggage_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"662fb26000f0238a280d6671\",\n        \"id\": \"662fb26000f0238a280d6671\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-APR95179-1023\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1023\",\n        \"product_uuid\": \"afb5a838-2b7a-46b4-b48d-293b62c9d888\",\n        \"quoted_price\": 115.01,\n        \"taxes\": {\n            \"stamp_duty\": null,\n            \"witholding\": null,\n            \"gst\": null,\n            \"tax\": 19.17\n        },\n        \"discounts\": {\n            \"amount\": 0\n        },\n        \"deductibles\": {\n            \"excess_fee\": null\n        },\n        \"currency_id\": \"GBP\",\n        \"host_country\": \"GB\",\n        \"host_country_state\": null,\n        \"trip_length\": 366,\n        \"start_date\": \"2024-12-12\",\n        \"end_date\": \"2025-12-12\",\n        \"deposit_date\": \"2024-04-29\",\n        \"created_at\": \"2024-04-29 02:04:44\",\n        \"updated_at\": \"2024-04-29 02:04:44\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 2210,\n                \"package_alias\": \"base_package\",\n                \"amount\": 0,\n                \"type\": \"Maximum Trip Duration\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2211,\n                \"package_alias\": \"medex_inc_evac_repat_package\",\n                \"amount\": 30.33,\n                \"type\": \"Emergency Medical and Additional Expenses (£10,000,000)\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2212,\n                \"package_alias\": \"accidental_death_package\",\n                \"amount\": 2,\n                \"type\": \"Personal Accident (£50,000)\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2213,\n                \"package_alias\": \"money_package\",\n                \"amount\": 8.72,\n                \"type\": \"Personal Money and Passport (£500)\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2214,\n                \"package_alias\": \"personal_liability_package\",\n                \"amount\": 2,\n                \"type\": \"Personal Liability (£2,000,000)\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2215,\n                \"package_alias\": \"legal_expenses_package\",\n                \"amount\": 2,\n                \"type\": \"Legal Expenses (£25,000)\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2216,\n                \"package_alias\": \"hijack_package\",\n                \"amount\": 0.47,\n                \"type\": \"Hijack (£100 per day, maximum £5,000)\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2217,\n                \"package_alias\": \"travel_delay_package\",\n                \"amount\": 2,\n                \"type\": \"Travel Delay (£500)\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2219,\n                \"package_alias\": \"trip_cancellation_package\",\n                \"amount\": 30.32,\n                \"type\": \"Cancellation, Curtailment and Missed Connection\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2221,\n                \"package_alias\": \"additional_baggage_package\",\n                \"amount\": 18,\n                \"type\": \"Baggage Loss or Delay\",\n                \"value\": null,\n                \"detail\": null\n            },\n            {\n                \"package_id\": 2210,\n                \"package_alias\": \"base_package\",\n                \"amount\": 0,\n                \"type\": \"level\",\n                \"value\": 3564,\n                \"detail\": \"31 days\"\n            },\n            {\n                \"package_id\": 2219,\n                \"package_alias\": \"trip_cancellation_package\",\n                \"amount\": 30.32,\n                \"type\": \"level\",\n                \"value\": 3568,\n                \"detail\": \"2000\"\n            },\n            {\n                \"package_id\": 2221,\n                \"package_alias\": \"additional_baggage_package\",\n                \"amount\": 18,\n                \"type\": \"level\",\n                \"value\": 3570,\n                \"detail\": \"2000\"\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 26,\n                \"dob\": \"1998-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 250\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        },\n        \"fees\": [],\n        \"destinations\": [\n            {\n                \"country\": \"US\",\n                \"risk_index\": 4\n            }\n        ]\n    }\n}"}],"_postman_id":"0e247873-6794-4222-8b72-2fdc9228ddba"},{"name":"Get Quote","id":"3ab9ca2f-2535-4654-b502-18a5e1b5f070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/quote/{{quote_id}}","description":"<p>Retrieve quote information of a previously given quote.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"ef16af61-b368-4c2f-afee-4a1abe76ecb6","id":"ef16af61-b368-4c2f-afee-4a1abe76ecb6","name":"Quotes","type":"folder"}},"urlObject":{"path":["api","partner","quote","{{quote_id}}"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"2fc23205-31a0-4046-9a4d-38f00428fdf5","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/quote/{{quote_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 13:50:41 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6388af979c8b7a4327031d12\",\n        \"id\": \"6388af979c8b7a4327031d12\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC33796-1007\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1007\",\n        \"quoted_price\": 20,\n        \"taxes\": {\n            \"stamp_duty\": null,\n            \"witholding\": null\n        },\n        \"deductibles\": {\n            \"excess_fee\": null\n        },\n        \"currency_id\": \"USD\",\n        \"host_country\": \"US\",\n        \"host_country_state\": \"OH\",\n        \"trip_length\": 7,\n        \"start_date\": \"2022-12-01\",\n        \"end_date\": \"2022-12-07\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-01 01:12:43\",\n        \"updated_at\": \"2022-12-01 01:12:43\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 83,\n                \"amount\": 20,\n                \"type\": \"Base Package\",\n                \"value\": null,\n                \"detail\": null\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 24,\n                \"dob\": \"1998-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 250\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"BE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"}],"_postman_id":"3ab9ca2f-2535-4654-b502-18a5e1b5f070"}],"id":"ef16af61-b368-4c2f-afee-4a1abe76ecb6","description":"<p>The Quote endpoint is used to retrieve pricing back from our API so that the product and pricing can be presented to the Customer. This does not create a policy.</p>\n<p><strong>Quote Request:</strong> In your quote request you will submit basic customer information and any package which you want to retrieve pricing on. Multiple packages can be sent in the call if you want to present all the multiple options to a customer.</p>\n<p><strong>Quote Response:</strong> The pricing on the benefit/package will be returned without creating a binding policy. The prices should then be displayed to the user who decide whether they want to proceed with the insurance. If a modular product the user will select the desired benefits.</p>\n<p>Here is our primary quote endpoint: <a href=\"https://developers.battleface.com/#0e247873-6794-4222-8b72-2fdc9228ddba\"><i>Create Quote</i></a></p>\n<p>Our system will store previously generated quotes. If you would like to retrieve one of these quotes, rather than creating a new one, you would use the <a href=\"https://developers.battleface.com/#3ab9ca2f-2535-4654-b502-18a5e1b5f070\"><i>Get Quote </i></a> endpoint.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"9bb75540-527e-4744-bb07-6516ffbae361"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"235e6a73-d018-4012-8345-743582bb1d67"}}],"_postman_id":"ef16af61-b368-4c2f-afee-4a1abe76ecb6"},{"name":"Order","item":[{"name":"Create Order","event":[{"listen":"test","script":{"id":"04794a35-159f-4ad3-82a9-39a07363ff1a","exec":["pm.environment.set(\"order_number\", JSON.parse(responseBody).data.order_number);","pm.environment.set(\"policy_number\", JSON.parse(responseBody).data.items[0].policy_number);","pm.environment.set(\"program_id\", JSON.parse(responseBody).data.items[0].program_id);"],"type":"text/javascript","packages":{}}}],"id":"f8de8843-099a-4e54-bf1f-458c2b9fea6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"USD\", // required\n    \"product_id\": {{api_product_id}}, // required\n    \"start_at\": \"2023-01-15\", // required\n    \"end_at\": \"2023-02-25\", // required\n    \"deposit_at\": \"2023-01-10\", // required\n    \"signed_at\": \"2022-07-09\",\n    \"details\": [\n        {\n            \"type\": \"package\", // required\n            \"product_package_id\": \"base_package\" // required\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\", // required\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\", // required\n            \"dob\": \"1997-01-05\", // required\n            \"age_at_travel\": 35,\n            \"email\": \"test@example.com\", // required\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"12345\", // required\n            \"country_code\": \"US\", // required\n            \"state_code\": \"OH\",// required for Canada, Switzerland, and United States\n            \"is_main\": true, // required\n            \"trip_cost\": 100 // required\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"John\",\n        \"middle_name\": \"Doe\",\n        \"last_name\": \"John\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\"\n    },\n    \"guardian\": {\n        \"first_name\": \"Jane\",\n        \"middle_name\": \"J\",\n        \"last_name\": \"Doe\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\",\n        \"dob\": \"1970-01-01\",\n        \"postal_address\": \"123 example street...\"\n    },\n    \"destinations\": [\n        {\n            \"country_code\": \"US\" // required\n        }\n    ] \n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed","description":"<p>Create an order from a previously given quote. You will still need to provide details of the order and details in the order will override those on the quote.</p>\n","urlObject":{"path":["api","partner","orders","condensed"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"7bb0ba8e-66ff-4122-bc99-7847547456bd","name":"Usa Generic","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{v_quote_id}}\",\n    \"currency_id\": \"USD\",\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2022-12-05\",\n    \"end_at\": \"2022-12-15\",\n    \"deposit_at\": \"2022-07-09\",\n    \"signed_at\": \"2022-07-09\",\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"is_main\": true,\n            \"trip_cost\": 1\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"John\",\n        \"middle_name\": \"Doe\",\n        \"last_name\": \"John\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\"\n    },\n    \"guardian\": {\n        \"first_name\": \"Jane\",\n        \"middle_name\": \"J\",\n        \"last_name\": \"Doe\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\",\n        \"dob\": \"1970-01-01\",\n        \"postal_address\": \"123 example street...\"\n    },\n    \"destinations\": [\n        {\n            \"country_code\": \"US\"\n        }\n    ] \n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 16:48:51 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6388da3cf57124e1a8016b12\",\n        \"order_number\": \"1-DEC804D-3A6D1BC7C2E7\",\n        \"client_id\": 123,\n        \"status\": \"Pending\",\n        \"premium\": 20,\n        \"total\": 20,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2022-12-01T16:48:51.318000Z\",\n        \"ordered_at\": \"2022-12-01T16:48:51.318000Z\",\n        \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n        \"items\": [\n            {\n                \"id\": \"05725351-0ccb-4685-9648-407dba3e552d\",\n                \"product_id\": 1007,\n                \"program_id\": 10,\n                \"product_uuid\": \"b9add08c-39b4-4faf-bbc3-1ea8e6816859\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 9,\n                \"product_minor_id\": 137,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DEC9648-407DBA3E552D-1\",\n                \"start_at\": \"2022-12-05\",\n                \"end_at\": \"2022-12-15\",\n                \"deposit_at\": \"2022-07-09\",\n                \"details\": [\n                    {\n                        \"id\": \"a45185d7-c339-436c-a229-7baa114e7f12\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 20,\n                        \"product_package_id\": 83\n                    },\n                    {\n                        \"id\": \"a3495872-54ee-4935-a31f-b239ab7338db\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"fd3c725f-e243-4212-aabc-686a89251ace\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 20\n                    },\n                    {\n                        \"id\": \"cbdd1c56-e53f-402e-9095-60860a9e1b59\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 20\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1997-01-05\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"email\": \"mail@example.com\"\n                },\n                \"guardian\": {\n                    \"first_name\": \"Jane\",\n                    \"middle_name\": \"J\",\n                    \"last_name\": \"Doe\",\n                    \"contact_number\": \"00467384321\",\n                    \"email\": \"mail@example.com\",\n                    \"dob\": \"1970-01-01\",\n                    \"postal_address\": \"123 example street...\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": null\n                    }\n                ],\n                \"order\": {\n                    \"quote_id\": \"6388da3cf57124e1a8016b12\",\n                    \"currency_id\": \"USD\",\n                    \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1997-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"00467344912\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"ip_address\": \"172.31.44.223\"\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-01T16:48:51.318000Z\",\n                    \"ordered_at\": \"2022-12-01T16:48:51.318000Z\",\n                    \"order_number\": \"1-DEC804D-3A6D1BC7C2E7\",\n                    \"premium\": 20,\n                    \"total\": 20,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 123,\n                    \"updated_at\": \"2022-12-01T16:48:51.915000Z\",\n                    \"created_at\": \"2022-12-01T16:48:51.915000Z\",\n                    \"_id\": \"6388daf3a239763c8306f888\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"country_name\": null,\n            \"state_code\": \"OH\",\n            \"state_name\": null,\n            \"ip_address\": \"172.31.44.223\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        }\n    }\n}"},{"id":"0eb1b49b-6c6b-4aac-878c-e7a842f05e14","name":"Failed Calculation","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{v_quote_id}}\",\n    \"currency_id\": \"USD\",\n    \"sanction_search_id\": 0,\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2022-12-05\",\n    \"end_at\": \"2022-12-15\",\n    \"deposit_at\": \"2022-07-09\",\n    \"signed_at\": \"2022-07-09\",\n    \"premium\": 21,\n    \"total\": 21,\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"is_main\": true,\n            \"trip_cost\": 1\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"John\",\n        \"middle_name\": \"Doe\",\n        \"last_name\": \"John\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\"\n    },\n    \"guardian\": {\n        \"first_name\": \"Jane\",\n        \"middle_name\": \"J\",\n        \"last_name\": \"Doe\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\",\n        \"dob\": \"1970-01-01\",\n        \"postal_address\": \"123 example street...\"\n    },\n    \"destinations\": [\n        {\n            \"country_code\": \"US\"\n        }\n    ] \n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 19:01:28 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Calculation mismatch premium. (received:21, expected:20) (and 1 more error)\",\n    \"error\": \"HTTP request returned status code 422:\\n{\\\"message\\\":\\\"Calculation mismatch premium. (received:21, expected:20) (and 1 more error)\\\",\\\"errors\\\":{\\\"premium\\\":[\\\"Calculati (truncated...)\\n\",\n    \"errors\": {\n        \"message\": \"Calculation mismatch premium. (received:21, expected:20) (and 1 more error)\",\n        \"errors\": {\n            \"premium\": [\n                \"Calculation mismatch premium. (received:21, expected:20)\"\n            ],\n            \"total\": [\n                \"Calculation mismatch total. (received:21, expected:20)\"\n            ]\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"},{"id":"a50950de-7b36-4fe3-9d17-62f7c3b34722","name":"Aus Generic - Levels","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"AUD\",\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2022-12-05\",\n    \"end_at\": \"2022-12-15\",\n    \"details\": [\n        {\n            \"type\": \"deductible\",\n            \"detail\": \"excess_fee\",\n            \"amount\": 100\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"travel_medical_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"trip_interruption_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"travel_delay_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"personal_accident_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"personal_liability_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"baggage_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"snow_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"motorcycle_moped_pack\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"cruise_pack\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"pet_cover\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"start_date\",\n            \"value\": \"2022-12-05\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"end_date\",\n            \"value\": \"2022-12-15\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"is_main\": true\n        }\n    ],\n    \"destinations\": [\n        {\n            \"country_code\": \"GE\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 12:48:02 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6389ad7206a90fe6510fd0f2\",\n        \"order_number\": \"1-DECA330-57D061D32A73\",\n        \"client_id\": 123,\n        \"status\": \"Pending\",\n        \"premium\": 498.79,\n        \"tax\": 4.32,\n        \"total\": 498.79,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2022-12-02T12:48:00.923000Z\",\n        \"ordered_at\": \"2022-12-02T12:48:00.923000Z\",\n        \"items\": [\n            {\n                \"id\": \"52cbca1d-fdd5-49f6-b8be-a818108492dc\",\n                \"product_id\": 1008,\n                \"program_id\": 11,\n                \"product_uuid\": \"72c27e58-92f1-4d2a-a811-7905b1e9e8d6\",\n                \"product_name\": \"Australian Standard\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 10,\n                \"product_minor_id\": 138,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DECB8BE-A818108492DC-1\",\n                \"start_at\": \"2022-12-05\",\n                \"end_at\": \"2022-12-15\",\n                \"deposit_at\": \"2022-12-02\",\n                \"details\": [\n                    {\n                        \"id\": \"57d5082b-7fc8-46c4-b60a-bb8b31b28a6c\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"7696032a-011e-4cca-b412-14766afcf42d\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Medical Package\",\n                        \"amount\": 75.43,\n                        \"product_package_id\": 84\n                    },\n                    {\n                        \"id\": \"8812c1e5-ac45-4c93-8032-eecf5e30e6b1\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Interruption Package\",\n                        \"amount\": 3.7,\n                        \"product_package_id\": 85\n                    },\n                    {\n                        \"id\": \"d92c1ef7-20bf-4623-b580-8e4f2cbd5b4e\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Delay Package\",\n                        \"amount\": 1.53,\n                        \"product_package_id\": 86\n                    },\n                    {\n                        \"id\": \"40f38ae7-6eb6-450b-bf00-4974c4dca07b\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Accident Package\",\n                        \"amount\": 0.06,\n                        \"product_package_id\": 87\n                    },\n                    {\n                        \"id\": \"9ab6596c-2080-4a39-bbae-778d53a92fb8\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 5,\n                        \"product_package_id\": 88\n                    },\n                    {\n                        \"id\": \"ac8c3aa0-9a96-4079-af1d-353abdea7319\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 19.39,\n                        \"product_package_id\": 89\n                    },\n                    {\n                        \"id\": \"db759ab4-123c-43d9-bb03-cdb4b4af154a\",\n                        \"type\": \"package\",\n                        \"detail\": \"Snow Package\",\n                        \"amount\": 158.39,\n                        \"product_package_id\": 91\n                    },\n                    {\n                        \"id\": \"5df6d330-b728-4537-be1f-d1d9e0f04bf4\",\n                        \"type\": \"package\",\n                        \"detail\": \"Motorcycle / Moped Pack\",\n                        \"amount\": 26,\n                        \"product_package_id\": 92\n                    },\n                    {\n                        \"id\": \"715e7667-310d-4ef8-a111-3bd5f74ab017\",\n                        \"type\": \"package\",\n                        \"detail\": \"Cruise Pack\",\n                        \"amount\": 98.05,\n                        \"product_package_id\": 93\n                    },\n                    {\n                        \"id\": \"ed781251-0d86-4317-ae8d-6b653b66ab30\",\n                        \"type\": \"package\",\n                        \"detail\": \"Pet Cover\",\n                        \"amount\": 2.04,\n                        \"product_package_id\": 94\n                    },\n                    {\n                        \"id\": \"f68e60b6-ff21-4bf4-8b35-14c025079135\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 109.2,\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"5b75851e-05af-4d6d-9662-ca8d296d0f87\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2022-12-05\",\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"7442ee73-4788-4403-bb8a-747886adcaf4\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2022-12-15\",\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"eeb922fd-aff9-4d7c-8423-f84e94e11eb6\",\n                        \"type\": \"level\",\n                        \"detail\": \"Unlimited\",\n                        \"amount\": 20000,\n                        \"value\": \"395\",\n                        \"product_package_id\": 84\n                    },\n                    {\n                        \"id\": \"2a53619d-ff48-4844-9d13-0ab5faeae207\",\n                        \"type\": \"level\",\n                        \"detail\": \"1000\",\n                        \"amount\": 0,\n                        \"value\": \"396\",\n                        \"product_package_id\": 85\n                    },\n                    {\n                        \"id\": \"0881b487-b87a-4ade-a869-7c0d28bd8202\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 0,\n                        \"value\": \"408\",\n                        \"product_package_id\": 86\n                    },\n                    {\n                        \"id\": \"64532e49-24d4-4652-8ab0-319c6c8e8ca2\",\n                        \"type\": \"level\",\n                        \"detail\": \"25000\",\n                        \"amount\": 25000,\n                        \"value\": \"409\",\n                        \"product_package_id\": 87\n                    },\n                    {\n                        \"id\": \"bf418a9c-df58-48f8-9c06-f3e096ccfcd7\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 0,\n                        \"value\": \"410\",\n                        \"product_package_id\": 88\n                    },\n                    {\n                        \"id\": \"3f307932-9e77-46d0-9ef0-678374f2a343\",\n                        \"type\": \"level\",\n                        \"detail\": \"1000\",\n                        \"amount\": 0,\n                        \"value\": \"411\",\n                        \"product_package_id\": 89\n                    },\n                    {\n                        \"id\": \"2cf24657-ccd6-42ea-880e-8f7a0ec8fc61\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"785\",\n                        \"product_package_id\": 91\n                    },\n                    {\n                        \"id\": \"aea1d729-31f5-48be-b817-74a9119437c3\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"786\",\n                        \"product_package_id\": 92\n                    },\n                    {\n                        \"id\": \"3d3d2629-2481-4f3c-8374-7a3e26c7faa9\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"787\",\n                        \"product_package_id\": 93\n                    },\n                    {\n                        \"id\": \"27701905-447f-4b01-9cc8-271981ee8213\",\n                        \"type\": \"level\",\n                        \"detail\": \"300\",\n                        \"amount\": 0,\n                        \"value\": \"788\",\n                        \"product_package_id\": 94\n                    },\n                    {\n                        \"id\": \"414ad87b-bc08-4227-b7cd-4f1bea51301c\",\n                        \"type\": \"level\",\n                        \"detail\": \"11 days\",\n                        \"amount\": 5000,\n                        \"value\": \"429\",\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"d5ac2240-78be-46f8-b8d8-a9667548290e\",\n                        \"type\": \"tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 4.32\n                    },\n                    {\n                        \"id\": \"49659b07-eb88-4b07-9f0b-4c25222392f4\",\n                        \"type\": \"tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 14.39\n                    },\n                    {\n                        \"id\": \"45ebaa22-efa0-46f6-96d6-fc24b0a526e3\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 498.79\n                    },\n                    {\n                        \"id\": \"4fb2cb56-d321-4006-bd6a-405a2199a8ae\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 498.79\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1990-01-05\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"GE\",\n                        \"country_name\": \"Georgia\"\n                    }\n                ],\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"6389ad7206a90fe6510fd0f2\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1990-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mnordin@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"KING STREET, NEWTOWN\",\n                        \"city\": \"Sydney\",\n                        \"post_code\": \"2055\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"ip_address\": \"172.31.10.89\"\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-02T12:48:00.923000Z\",\n                    \"ordered_at\": \"2022-12-02T12:48:00.923000Z\",\n                    \"order_number\": \"1-DECA330-57D061D32A73\",\n                    \"premium\": 498.79,\n                    \"total\": 498.79,\n                    \"fees\": 0,\n                    \"tax\": 4.32,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 123,\n                    \"updated_at\": \"2022-12-02T12:48:02.045000Z\",\n                    \"created_at\": \"2022-12-02T12:48:02.045000Z\",\n                    \"_id\": \"6389f402df381a8b830badd9\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.31.10.89\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        }\n    }\n}"},{"id":"e9a1de39-8ad5-45b4-bf5a-194d7fccde37","name":"Aus Generic - Level Aliasing","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"AUD\",\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2023-01-15\",\n    \"end_at\": \"2023-01-25\",\n    \"details\": [\n        {\n            \"type\": \"deductible\",\n            \"detail\": \"excess_fee\",\n            \"amount\": 100\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"travel_medical_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"trip_interruption_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"level\",\n            \"value\": \"40000\",\n            \"product_package_id\": \"trip_interruption_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"travel_delay_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"personal_accident_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"personal_liability_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"baggage_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"snow_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"motorcycle_moped_pack\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"cruise_pack\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"pet_cover\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"start_date\",\n            \"value\": \"2023-01-15\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"end_date\",\n            \"value\": \"2023-01-20\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"is_main\": true\n        }\n    ],\n    \"destinations\": [\n        {\n            \"country_code\": \"GE\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 15 Dec 2022 12:30:24 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"639b105d75b67820c10d19b2\",\n        \"order_number\": \"1-DECBA1E-CCEFD58E6ED9\",\n        \"client_id\": 123,\n        \"status\": \"Pending\",\n        \"premium\": 788.18,\n        \"tax\": 6.82,\n        \"total\": 788.18,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2022-12-15T12:30:22.615000Z\",\n        \"ordered_at\": \"2022-12-15T12:30:22.615000Z\",\n        \"items\": [\n            {\n                \"id\": \"50650ef8-c8a6-456b-8ed6-37a9eea209ab\",\n                \"product_id\": 1008,\n                \"program_id\": 11,\n                \"product_uuid\": \"72c27e58-92f1-4d2a-a811-7905b1e9e8d6\",\n                \"product_name\": \"Australian Standard\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 10,\n                \"product_minor_id\": 170,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DEC8ED6-37A9EEA209AB-1\",\n                \"start_at\": \"2023-01-15\",\n                \"end_at\": \"2023-01-25\",\n                \"deposit_at\": \"2022-12-15\",\n                \"details\": [\n                    {\n                        \"id\": \"40161b19-96f1-48c9-8d0c-467fab05c5a9\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"885d22ef-243b-4db8-96cd-d1a0a119f8c8\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Medical Package\",\n                        \"amount\": 75.43,\n                        \"product_package_id\": 84\n                    },\n                    {\n                        \"id\": \"5c73b9d5-49c1-41c5-9eae-27c80ccad1ba\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Interruption Package\",\n                        \"amount\": 297.14,\n                        \"product_package_id\": 85\n                    },\n                    {\n                        \"id\": \"0ba008a5-4135-4cd8-9bbd-58005a96af00\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"40000\",\n                        \"product_package_id\": 85\n                    },\n                    {\n                        \"id\": \"ad154ede-0879-4b25-86c8-99f2295d9020\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Delay Package\",\n                        \"amount\": 4.51,\n                        \"product_package_id\": 86\n                    },\n                    {\n                        \"id\": \"ca27a48e-7a58-41e2-9b5f-6a0d8ce92791\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Accident Package\",\n                        \"amount\": 0.06,\n                        \"product_package_id\": 87\n                    },\n                    {\n                        \"id\": \"bbc441fc-da52-4586-8211-6aab140f1aa7\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 5,\n                        \"product_package_id\": 88\n                    },\n                    {\n                        \"id\": \"864b011f-0396-45c5-a977-08e20b3c7364\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 12.36,\n                        \"product_package_id\": 89\n                    },\n                    {\n                        \"id\": \"94c8cd2d-c98d-4fd7-a706-c8fb7a28788b\",\n                        \"type\": \"package\",\n                        \"detail\": \"Snow Package\",\n                        \"amount\": 158.39,\n                        \"product_package_id\": 91\n                    },\n                    {\n                        \"id\": \"ed8f7ecd-4849-4d55-96da-1fe6d961379c\",\n                        \"type\": \"package\",\n                        \"detail\": \"Motorcycle / Moped Pack\",\n                        \"amount\": 26,\n                        \"product_package_id\": 92\n                    },\n                    {\n                        \"id\": \"d522bffe-f014-407e-bda0-5912f0f4e482\",\n                        \"type\": \"package\",\n                        \"detail\": \"Cruise Pack\",\n                        \"amount\": 98.05,\n                        \"product_package_id\": 93\n                    },\n                    {\n                        \"id\": \"10b9ec1c-8972-469e-85b1-45a3978bac7c\",\n                        \"type\": \"package\",\n                        \"detail\": \"Pet Cover\",\n                        \"amount\": 2.04,\n                        \"product_package_id\": 94\n                    },\n                    {\n                        \"id\": \"ede1dbd3-faed-4a59-abf7-0b5d6bbc77e6\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 109.2,\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"5eb5c8b9-722f-4adf-b7aa-f89cba96bf1d\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2023-01-15\",\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"31230e85-27b9-4624-b3e5-30ab754f7f68\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2023-01-20\",\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"a8e7d9a8-460b-4f75-a114-7a4309b83bfc\",\n                        \"type\": \"level\",\n                        \"detail\": \"Unlimited\",\n                        \"amount\": 20000,\n                        \"value\": \"395\",\n                        \"product_package_id\": 84\n                    },\n                    {\n                        \"id\": \"8710fcb5-3bba-426f-84ee-c8809f1b6d71\",\n                        \"type\": \"level\",\n                        \"detail\": \"40000\",\n                        \"amount\": 0,\n                        \"value\": \"407\",\n                        \"product_package_id\": 85\n                    },\n                    {\n                        \"id\": \"04c6cfc8-1aa7-43f8-87af-58bb88fa466b\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 0,\n                        \"value\": \"408\",\n                        \"product_package_id\": 86\n                    },\n                    {\n                        \"id\": \"4245c60c-0890-4744-bba7-ef92fd898627\",\n                        \"type\": \"level\",\n                        \"detail\": \"25000\",\n                        \"amount\": 25000,\n                        \"value\": \"409\",\n                        \"product_package_id\": 87\n                    },\n                    {\n                        \"id\": \"cde31ecf-323f-427b-913c-b0136aa96ada\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 0,\n                        \"value\": \"410\",\n                        \"product_package_id\": 88\n                    },\n                    {\n                        \"id\": \"a532488e-e163-4b93-b294-282a9bbb1025\",\n                        \"type\": \"level\",\n                        \"detail\": \"1000\",\n                        \"amount\": 0,\n                        \"value\": \"411\",\n                        \"product_package_id\": 89\n                    },\n                    {\n                        \"id\": \"fa86a8bc-6841-4a41-a909-54cd7f158b57\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"785\",\n                        \"product_package_id\": 91\n                    },\n                    {\n                        \"id\": \"911108d0-507d-43a4-8ca3-6bb203b2a299\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"786\",\n                        \"product_package_id\": 92\n                    },\n                    {\n                        \"id\": \"ae0705b7-e1ae-483d-b22b-b6a2dc2b2f4a\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"787\",\n                        \"product_package_id\": 93\n                    },\n                    {\n                        \"id\": \"5b38a87a-0629-4c76-9972-14daa9b595f6\",\n                        \"type\": \"level\",\n                        \"detail\": \"300\",\n                        \"amount\": 0,\n                        \"value\": \"788\",\n                        \"product_package_id\": 94\n                    },\n                    {\n                        \"id\": \"f64c79df-0a24-49ef-8d5a-f3dfe638e424\",\n                        \"type\": \"level\",\n                        \"detail\": \"6 days\",\n                        \"amount\": 5000,\n                        \"value\": \"424\",\n                        \"product_package_id\": 90\n                    },\n                    {\n                        \"id\": \"c0db953d-f342-4591-8192-6fc23fd7d021\",\n                        \"type\": \"tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 6.82\n                    },\n                    {\n                        \"id\": \"0258bdb7-6f0d-437b-a9f5-2a448a167691\",\n                        \"type\": \"tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 22.74\n                    },\n                    {\n                        \"id\": \"2fc6519c-cc57-4f96-baad-52fa447b2be8\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 788.18\n                    },\n                    {\n                        \"id\": \"b1fcd64c-0340-4841-9982-6c91ac624f2e\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 788.18\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1990-01-05\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"GE\",\n                        \"country_name\": \"Georgia\"\n                    }\n                ],\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"639b105d75b67820c10d19b2\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1990-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mnordin@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"KING STREET, NEWTOWN\",\n                        \"city\": \"Sydney\",\n                        \"post_code\": \"2055\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"ip_address\": \"172.31.2.15\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-15T12:30:22.615000Z\",\n                    \"ordered_at\": \"2022-12-15T12:30:22.615000Z\",\n                    \"order_number\": \"1-DECBA1E-CCEFD58E6ED9\",\n                    \"premium\": 788.18,\n                    \"total\": 788.18,\n                    \"fees\": 0,\n                    \"tax\": 6.82,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 123,\n                    \"updated_at\": \"2022-12-15T12:30:24.886000Z\",\n                    \"created_at\": \"2022-12-15T12:30:24.886000Z\",\n                    \"_id\": \"639b136032d2da4b7e068662\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.31.2.15\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        }\n    }\n}"},{"id":"e565cb4a-fc49-407b-8082-d750c2d3e37d","name":"Aus Generic - Multiple Level Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"AUD\",\n    \"sanction_search_id\": 0,\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2024-03-01\",\n    \"end_at\": \"2024-03-31\",\n    \"deposit_at\": \"2024-03-01\",\n    \"version_date\": \"2024-03-01\",\n    \"details\": [\n        {\n            \"type\": \"deductible\",\n            \"detail\": \"excess_fee\",\n            \"amount\": 250\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"travel_medical_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"level\",\n            \"value\": \"Unlimited\",\n            \"product_package_id\": \"travel_medical_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"start_date\",\n            \"value\": \"2024-03-11\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"end_date\",\n            \"value\": \"2024-03-21\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"level\",\n            \"value\": \"8000\",\n            \"product_package_id\": \"rental_vehicle_damage_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"2004-01-01\",\n            \"age_at_travel\": 20,\n            \"email\": \"kmarkevicius@battleface.com\",\n            \"contact_number\": \"+61212345678\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"is_main\": true\n        }\n    ],\n    \"destinations\": [\n        {\n            \"country_code\": \"US\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 15 Dec 2022 12:30:24 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"BBB\",\n        \"order_number\": \"1-MAR9B56-377FDE5710D4\",\n        \"client_referral_code\": \"e229Ytrsq1JB\",\n        \"client_id\": 631,\n        \"status\": \"Pending\",\n        \"premium\": 330.73,\n        \"tax\": 2.95,\n        \"total\": 330.73,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2024-03-01T08:17:25.616000Z\",\n        \"ordered_at\": \"2024-03-01T08:17:25.600000Z\",\n        \"items\": [\n            {\n                \"id\": \"192c3a29-4eb7-4597-a996-9ad7f0aa895d\",\n                \"product_id\": 1008,\n                \"program_id\": 11,\n                \"product_uuid\": \"72c27e58-92f1-4d2a-a811-7905b1e9e8d6\",\n                \"product_name\": \"Australian Standard\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 10,\n                \"product_minor_id\": 2059,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-MARA996-9AD7F0AA895D-1\",\n                \"start_at\": \"2024-03-01\",\n                \"end_at\": \"2024-03-31\",\n                \"deposit_at\": \"2024-03-01\",\n                \"details\": [\n                    {\n                        \"id\": \"4d7255c4-dd5e-40b2-8a65-30566da4597d\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 250\n                    },\n                    {\n                        \"id\": \"9fc4bc8f-8a32-460d-97ca-96d398044e53\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Medical Package\",\n                        \"amount\": 224.55,\n                        \"product_package_id\": 5522\n                    },\n                    {\n                        \"id\": \"bde33760-6e38-42fc-8a5b-507959ffe57e\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"Unlimited\",\n                        \"product_package_id\": 5522\n                    },\n                    {\n                        \"id\": \"5de972fe-d62b-4fe4-97fc-19b6a63f3a9e\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 106.18,\n                        \"product_package_id\": 5528\n                    },\n                    {\n                        \"id\": \"e6ee6348-b87e-4c5e-b559-08e0e84e0e16\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2024-03-11\",\n                        \"product_package_id\": 5528\n                    },\n                    {\n                        \"id\": \"f6a4346a-eb4f-43f5-aedd-400c38cc3842\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2024-03-21\",\n                        \"product_package_id\": 5528\n                    },\n                    {\n                        \"id\": \"ab15438d-e67b-4e95-ba77-bb99b54a2a9f\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"8000\",\n                        \"product_package_id\": 5528\n                    },\n                    {\n                        \"id\": \"8a217dc5-86f1-4d5f-b3ef-5f423aeb296d\",\n                        \"type\": \"level\",\n                        \"detail\": \"Unlimited\",\n                        \"amount\": 2000000,\n                        \"value\": \"14994\",\n                        \"product_package_id\": 5522\n                    },\n                    {\n                        \"id\": \"0cac5944-3f34-4316-8ea8-bc0b7975fadd\",\n                        \"type\": \"level\",\n                        \"detail\": \"11 days\",\n                        \"amount\": 11,\n                        \"value\": \"15028\",\n                        \"product_package_id\": 5528\n                    },\n                    {\n                        \"id\": \"a28bb345-6633-48fb-8f69-60386436ccac\",\n                        \"type\": \"level\",\n                        \"detail\": \"8000\",\n                        \"amount\": 8000,\n                        \"value\": \"15385\",\n                        \"product_package_id\": 5528\n                    },\n                    {\n                        \"id\": \"b8519628-5962-4ccb-ba01-08d5f711b4c1\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 2.95\n                    },\n                    {\n                        \"id\": \"5953af1a-9b69-4748-a827-dce652d56a00\",\n                        \"type\": \"included_breakdown_tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 9.83\n                    },\n                    {\n                        \"id\": \"0e5013d5-a9df-4027-84e5-d414228fca15\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 330.73\n                    },\n                    {\n                        \"id\": \"ceedb215-db68-45dc-a814-a026e0f3470c\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 330.73\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"2004-01-01\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"BBB\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-03-01T08:17:25.600000Z\",\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"2004-01-01\",\n                        \"age_at_travel\": 20,\n                        \"email\": \"kmarkevicius@battleface.com\",\n                        \"contact_number\": \"+61212345678\",\n                        \"address\": \"KING STREET, NEWTOWN\",\n                        \"city\": \"Sydney\",\n                        \"post_code\": \"2055\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"ip_address\": \"172.31.25.99\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-MAR9B56-377FDE5710D4\",\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-03-01T08:17:25.616000Z\",\n                    \"premium\": 330.73,\n                    \"total\": 330.73,\n                    \"fees\": 0,\n                    \"tax\": 2.95,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"stamp_duty\",\n                            \"amount\": 2.95,\n                            \"id\": \"fa97c2f4-63ec-49eb-8f71-deccfdb709af\",\n                            \"_id\": \"65e18f1532b5938e0f0bf6b4\"\n                        },\n                        {\n                            \"type\": \"included_breakdown_tax\",\n                            \"detail\": \"witholding\",\n                            \"amount\": 9.83,\n                            \"id\": \"9d1b783b-c60b-41f0-b500-1dee4e96dd55\",\n                            \"_id\": \"65e18f1532b5938e0f0bf6b5\"\n                        }\n                    ],\n                    \"client_id\": 631,\n                    \"client_referral_code\": \"e229Ytrsq1JB\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-03-01T08:17:25.904000Z\",\n                    \"created_at\": \"2024-03-01T08:17:25.904000Z\",\n                    \"_id\": \"65e18f1532b5938e0f0bf6b6\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": \"United States of America\"\n                    },\n                    {\n                        \"country_code\": \"CA\",\n                        \"country_name\": \"Canada\"\n                    },\n                    {\n                        \"country_code\": \"MX\",\n                        \"country_name\": \"Mexico\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"2004-01-01\",\n            \"age_at_travel\": 20,\n            \"email\": \"kmarkevicius@battleface.com\",\n            \"contact_number\": \"+61212345678\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"127.0.0.1\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        },\n        \"details\": [\n            {\n                \"id\": \"fa97c2f4-63ec-49eb-8f71-deccfdb709af\",\n                \"type\": \"included_tax\",\n                \"detail\": \"stamp_duty\",\n                \"amount\": 2.95\n            },\n            {\n                \"id\": \"9d1b783b-c60b-41f0-b500-1dee4e96dd55\",\n                \"type\": \"included_breakdown_tax\",\n                \"detail\": \"witholding\",\n                \"amount\": 9.83\n            }\n        ]\n    }\n}"},{"id":"328541cd-e34a-4bcd-b06f-b0bb3dbb8a82","name":"USA Generic - No Email","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"USD\",\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2022-12-15\",\n    \"end_at\": \"2022-12-25\",\n    \"deposit_at\": \"2022-07-09\",\n    \"signed_at\": \"2022-07-09\",\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"is_main\": true,\n            \"trip_cost\": 1\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"John\",\n        \"middle_name\": \"Doe\",\n        \"last_name\": \"John\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\"\n    },\n    \"guardian\": {\n        \"first_name\": \"Jane\",\n        \"middle_name\": \"J\",\n        \"last_name\": \"Doe\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\",\n        \"dob\": \"1970-01-01\",\n        \"postal_address\": \"123 example street...\"\n    },\n    \"flags\" : {\n      \"send_policy_emails\" : false\n    },\n    \"destinations\": [\n        {\n            \"country_code\": \"US\"\n        }\n    ] \n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 14 Dec 2022 14:09:13 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6396f743fb0ac886ea0ced02\",\n        \"order_number\": \"1-DEC8AE5-C05F8303B06C\",\n        \"client_id\": 634,\n        \"status\": \"Pending\",\n        \"premium\": 10,\n        \"total\": 10,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2022-12-14T14:09:13.220000Z\",\n        \"ordered_at\": \"2022-12-14T14:09:13.220000Z\",\n        \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n        \"items\": [\n            {\n                \"id\": \"112a4cd5-ac03-49fa-a78c-34f075613b63\",\n                \"product_id\": 1010,\n                \"program_id\": 13,\n                \"product_uuid\": \"b811786a-fcd7-4f66-8265-59be9887fc9f\",\n                \"product_name\": \"Vertical Insure\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 12,\n                \"product_minor_id\": 144,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DECA78C-34F075613B63-1\",\n                \"start_at\": \"2022-12-15\",\n                \"end_at\": \"2022-12-25\",\n                \"deposit_at\": \"2022-07-09\",\n                \"details\": [\n                    {\n                        \"id\": \"b6ee2df7-a7dc-49bc-81e0-ac1f89865f1b\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 10,\n                        \"product_package_id\": 97\n                    },\n                    {\n                        \"id\": \"baa5aed5-dcb5-42f9-a8e9-d54066e62201\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"d032404e-96ec-446f-8837-c4217c2e3b66\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 10\n                    },\n                    {\n                        \"id\": \"8a7cd666-a5f1-4fee-ba5b-b19ab8cfe643\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 10\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"dob\": \"1997-01-05\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"Doe\",\n                    \"last_name\": \"John\",\n                    \"contact_number\": \"00467384321\",\n                    \"email\": \"mail@example.com\"\n                },\n                \"guardian\": {\n                    \"first_name\": \"Jane\",\n                    \"middle_name\": \"J\",\n                    \"last_name\": \"Doe\",\n                    \"contact_number\": \"00467384321\",\n                    \"email\": \"mail@example.com\",\n                    \"dob\": \"1970-01-01\",\n                    \"postal_address\": \"123 example street...\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": \"United States of America\"\n                    }\n                ],\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"6396f743fb0ac886ea0ced02\",\n                    \"currency_id\": \"USD\",\n                    \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"dob\": \"1997-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"00467344912\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"ip_address\": \"172.31.2.15\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": false,\n                        \"generate_policy_document\": true\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-14T14:09:13.220000Z\",\n                    \"ordered_at\": \"2022-12-14T14:09:13.220000Z\",\n                    \"order_number\": \"1-DEC8AE5-C05F8303B06C\",\n                    \"premium\": 10,\n                    \"total\": 10,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 634,\n                    \"updated_at\": \"2022-12-14T14:09:13.933000Z\",\n                    \"created_at\": \"2022-12-14T14:09:13.933000Z\",\n                    \"_id\": \"6399d9094cbc9c06390c175e\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"ip_address\": \"172.31.2.15\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        }\n    }\n}"},{"id":"5b36b23f-2a0a-4035-8335-721183b62297","name":"Hamilton ST Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"GBP\",\n    \"sanction_search_id\": 0,\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2024-05-01\",\n    \"end_at\": \"2024-05-18\",\n    \"deposit_at\": \"2024-04-29\",\n    \"details\": [\n        {\n            \"type\": \"deductible\",\n            \"detail\": \"excess_fee\",\n            \"amount\": 100\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson KM\",\n            \"dob\": \"1959-01-01\",\n            \"age_at_travel\": 35,\n            \"email\": \"testing@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"GB\",\n            \"is_main\": true,\n            \"trip_cost\": 1\n        },\n        {\n            \"first_name\": \"Bob\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson KM\",\n            \"dob\": \"1959-01-01\",\n            \"is_main\": false,\n            \"trip_cost\": 1\n        }\n    ],\n    \"destinations\": [\n        {\n            \"destination_group\": \"Tier 1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 29 Apr 2024 15:05:46 GMT"},{"key":"Server","value":"nginx/1.25.2"},{"key":"X-Powered-By","value":"PHP/8.2.11"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"662fb6adc80a75f66c09198b\",\n        \"order_number\": \"1-APRA6AA-C2A8FD2C9ADE\",\n        \"client_referral_code\": \"bS5FvXHJY9st\",\n        \"client_id\": 1,\n        \"status\": \"Pending\",\n        \"premium\": 84.34,\n        \"tax\": 16.86,\n        \"total\": 101.2,\n        \"currency_id\": \"GBP\",\n        \"status_updated_at\": \"2024-04-29T15:05:35.515000Z\",\n        \"ordered_at\": \"2024-04-29T15:05:29.386000Z\",\n        \"items\": [\n            {\n                \"id\": \"22ae3659-9516-4ee7-a118-9e3fe2e45b46\",\n                \"product_id\": 1013,\n                \"program_id\": 10,\n                \"product_uuid\": \"c270c22f-e91d-41f5-9c6a-92a2b4a4440e\",\n                \"product_name\": \"Hamilton Single Trip\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 15,\n                \"product_minor_id\": 119,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-APRA118-9E3FE2E45B46-1\",\n                \"start_at\": \"2024-05-01\",\n                \"end_at\": \"2024-05-18\",\n                \"deposit_at\": \"2024-04-29\",\n                \"details\": [\n                    {\n                        \"id\": \"65b31a2c-a929-4577-8cf3-7209995f1f2e\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"6669383d-319d-4779-b7a8-6ddb193dc577\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 42.17,\n                        \"product_package_id\": 2004\n                    },\n                    {\n                        \"id\": \"3b191858-05a3-49a9-9ef2-cafd5d09d726\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"b2c574b9-6859-4334-a762-0e5206ce6184\",\n                        \"type\": \"tax\",\n                        \"detail\": \"tax\",\n                        \"amount\": 8.43\n                    },\n                    {\n                        \"id\": \"6011dd16-bc67-46c4-9ef4-0d5a443b4339\",\n                        \"type\": \"minimum\",\n                        \"detail\": \"package\",\n                        \"for\": \"package\",\n                        \"amount\": 0,\n                        \"value\": \"0\",\n                        \"product_package_id\": 2004\n                    },\n                    {\n                        \"id\": \"791753c3-47a5-4a71-8dba-b06ff17e768d\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 42.17\n                    },\n                    {\n                        \"id\": \"9a418b43-449a-4027-b90c-b87674a8e1bd\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 50.6\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson KM\",\n                    \"dob\": \"1959-01-01\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"662fb6adc80a75f66c09198b\",\n                    \"currency_id\": \"GBP\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-04-29T15:05:29.386000Z\",\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson KM\",\n                        \"dob\": \"1959-01-01\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"testing@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"GB\",\n                        \"ip_address\": \"172.24.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-APRA6AA-C2A8FD2C9ADE\",\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-04-29T15:05:35.515000Z\",\n                    \"premium\": 84.34,\n                    \"total\": 101.2,\n                    \"fees\": 0,\n                    \"tax\": 16.86,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"tax\",\n                            \"detail\": \"tax\",\n                            \"amount\": 16.86,\n                            \"id\": \"5bf91790-0960-4719-bef2-67c4e1d573c0\",\n                            \"_id\": \"662fb742836350868e0ef1ea\"\n                        }\n                    ],\n                    \"client_id\": 1,\n                    \"client_referral_code\": \"bS5FvXHJY9st\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-04-29T15:05:46.739000Z\",\n                    \"created_at\": \"2024-04-29T15:05:46.739000Z\",\n                    \"_id\": \"662fb74a836350868e0ef1eb\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destination_groups\": [\n                    {\n                        \"name\": \"Tier 1\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"b36f0fbf-4dd2-4a03-b551-4b8fefe76cb9\",\n                \"product_id\": 1013,\n                \"program_id\": 10,\n                \"product_uuid\": \"c270c22f-e91d-41f5-9c6a-92a2b4a4440e\",\n                \"product_name\": \"Hamilton Single Trip\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 15,\n                \"product_minor_id\": 119,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-APRB551-4B8FEFE76CB9-2\",\n                \"start_at\": \"2024-05-01\",\n                \"end_at\": \"2024-05-18\",\n                \"deposit_at\": \"2024-04-29\",\n                \"details\": [\n                    {\n                        \"id\": \"29e5ebb6-9600-48a3-a4ec-2cd98274f300\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"0f58878b-9926-432d-9939-825f147f22bf\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 42.17,\n                        \"product_package_id\": 2004\n                    },\n                    {\n                        \"id\": \"f9fc54ac-e23f-4d3a-b91e-2d40e2bc0785\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"30704101-9820-4826-8b67-0de560c908ee\",\n                        \"type\": \"tax\",\n                        \"detail\": \"tax\",\n                        \"amount\": 8.43\n                    },\n                    {\n                        \"id\": \"db050e00-ff04-4bbe-9efb-6d5a3adc05d5\",\n                        \"type\": \"minimum\",\n                        \"detail\": \"package\",\n                        \"for\": \"package\",\n                        \"amount\": 0,\n                        \"value\": \"0\",\n                        \"product_package_id\": 2004\n                    },\n                    {\n                        \"id\": \"46339e70-6744-4958-b6b7-4a38ced1744b\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 42.17\n                    },\n                    {\n                        \"id\": \"f0e6fef6-f882-4424-a3c1-4a23ddbbc116\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 50.6\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Bob\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson KM\",\n                    \"dob\": \"1959-01-01\"\n                },\n                \"is_main\": false,\n                \"order\": {\n                    \"quote_id\": \"662fb6adc80a75f66c09198b\",\n                    \"currency_id\": \"GBP\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-04-29T15:05:29.386000Z\",\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson KM\",\n                        \"dob\": \"1959-01-01\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"testing@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"GB\",\n                        \"ip_address\": \"172.24.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-APRA6AA-C2A8FD2C9ADE\",\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-04-29T15:05:35.515000Z\",\n                    \"premium\": 84.34,\n                    \"total\": 101.2,\n                    \"fees\": 0,\n                    \"tax\": 16.86,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"tax\",\n                            \"detail\": \"tax\",\n                            \"amount\": 16.86,\n                            \"id\": \"5bf91790-0960-4719-bef2-67c4e1d573c0\",\n                            \"_id\": \"662fb742836350868e0ef1ea\"\n                        }\n                    ],\n                    \"client_id\": 1,\n                    \"client_referral_code\": \"bS5FvXHJY9st\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-04-29T15:05:46.739000Z\",\n                    \"created_at\": \"2024-04-29T15:05:46.739000Z\",\n                    \"_id\": \"662fb74a836350868e0ef1eb\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destination_groups\": [\n                    {\n                        \"name\": \"Tier 1\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson KM\",\n            \"dob\": \"1959-01-01\",\n            \"age_at_travel\": 35,\n            \"email\": \"testing@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"GB\",\n            \"state_code\": null,\n            \"ip_address\": \"172.24.0.50\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"firstaffiliate@testing123456.com\"\n        },\n        \"details\": [\n            {\n                \"id\": \"5bf91790-0960-4719-bef2-67c4e1d573c0\",\n                \"type\": \"tax\",\n                \"detail\": \"tax\",\n                \"amount\": 16.86\n            }\n        ]\n    }\n}"},{"id":"c116d1a7-a1ac-42a1-a892-6d8e5d74e1e0","name":"Hamilton AMT Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"GBP\",\n    \"sanction_search_id\": 0,\n    \"product_id\": {{api_product_id}},\n    \"start_at\": \"2024-05-18\",\n    \"end_at\": \"2025-05-18\",\n    \"deposit_at\": \"2024-04-29\",\n    \"details\": [\n        {\n            \"type\": \"deductible\",\n            \"detail\": \"excess_fee\",\n            \"amount\": 100\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"level\",\n            \"value\": \"31\",\n            \"product_package_id\": \"base_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"medex_inc_evac_repat_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"accidental_death_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"money_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"personal_liability_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"legal_expenses_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"hijack_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"travel_delay_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"winter_sports_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"trip_cancellation_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"level\",\n            \"value\": \"2000\",\n            \"product_package_id\": \"trip_cancellation_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"additional_baggage_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"level\",\n            \"value\": \"2000\",\n            \"product_package_id\": \"additional_baggage_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"activities_package\"\n        },\n        {\n            \"type\": \"level-condition\",\n            \"detail\": \"level\",\n            \"value\": \"1\",\n            \"product_package_id\": \"activities_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson KM\",\n            \"dob\": \"1959-01-01\",\n            \"age_at_travel\": 35,\n            \"email\": \"testing@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"GB\",\n            \"is_main\": true,\n            \"trip_cost\": 1\n        },\n        {\n            \"first_name\": \"Bob\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson KM\",\n            \"dob\": \"1959-01-01\",\n            \"is_main\": false,\n            \"trip_cost\": 1\n        }\n    ],\n    \"destinations\": [\n        {\n            \"destination_group\": \"europe\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 29 Apr 2024 14:50:31 GMT"},{"key":"Server","value":"nginx/1.25.2"},{"key":"X-Powered-By","value":"PHP/8.2.11"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"662fb26000f0238a280d6671\",\n        \"order_number\": \"1-APR9C69-5AA6A8C8C1FA\",\n        \"client_referral_code\": \"bS5FvXHJY9st\",\n        \"client_id\": 1,\n        \"status\": \"Pending\",\n        \"premium\": 178.71,\n        \"tax\": 35.74,\n        \"total\": 214.45,\n        \"currency_id\": \"GBP\",\n        \"status_updated_at\": \"2024-04-29T14:50:26.455000Z\",\n        \"ordered_at\": \"2024-04-29T14:50:25.917000Z\",\n        \"items\": [\n            {\n                \"id\": \"cc51a9ae-8748-42a8-a535-99ba213f4721\",\n                \"product_id\": 1023,\n                \"program_id\": 13,\n                \"product_uuid\": \"afb5a838-2b7a-46b4-b48d-293b62c9d888\",\n                \"product_name\": \"Hamilton Annual Multi Trip\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 25,\n                \"product_minor_id\": 125,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-APRA535-99BA213F4721-1\",\n                \"start_at\": \"2024-05-18\",\n                \"end_at\": \"2025-05-18\",\n                \"deposit_at\": \"2024-04-29\",\n                \"details\": [\n                    {\n                        \"id\": \"9ecd6b55-8088-4316-b724-c53830edb9a2\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"45123f82-7f36-4a90-be53-eb3d6652d6ac\",\n                        \"type\": \"package\",\n                        \"detail\": \"Maximum Trip Duration\",\n                        \"amount\": 0,\n                        \"product_package_id\": 2210\n                    },\n                    {\n                        \"id\": \"743e2941-8246-439d-b2da-820ac66a9f8a\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"31\",\n                        \"product_package_id\": 2210\n                    },\n                    {\n                        \"id\": \"d64b96e3-ab94-409d-a27d-532a5b9740ee\",\n                        \"type\": \"package\",\n                        \"detail\": \"Emergency Medical and Additional Expenses (£10,000,000)\",\n                        \"amount\": 13.71,\n                        \"product_package_id\": 2211\n                    },\n                    {\n                        \"id\": \"f6de9cfc-c139-4dd4-b709-377c1662d501\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Accident (£50,000)\",\n                        \"amount\": 0.9,\n                        \"product_package_id\": 2212\n                    },\n                    {\n                        \"id\": \"37c12f1c-6d9c-4f11-a5cf-16746978fc45\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Money and Passport (£500)\",\n                        \"amount\": 3.94,\n                        \"product_package_id\": 2213\n                    },\n                    {\n                        \"id\": \"4e8e1571-6584-4184-ac90-379fdcb23563\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability (£2,000,000)\",\n                        \"amount\": 0.9,\n                        \"product_package_id\": 2214\n                    },\n                    {\n                        \"id\": \"cca81f55-b627-47be-94e2-8e1dfea672b1\",\n                        \"type\": \"package\",\n                        \"detail\": \"Legal Expenses (£25,000)\",\n                        \"amount\": 0.9,\n                        \"product_package_id\": 2215\n                    },\n                    {\n                        \"id\": \"25f44172-8fc6-4ea2-8251-737219d989af\",\n                        \"type\": \"package\",\n                        \"detail\": \"Hijack (£100 per day, maximum £5,000)\",\n                        \"amount\": 0.21,\n                        \"product_package_id\": 2216\n                    },\n                    {\n                        \"id\": \"038f296d-bb72-4a58-9e73-f390da0597f0\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Delay (£500)\",\n                        \"amount\": 0.9,\n                        \"product_package_id\": 2217\n                    },\n                    {\n                        \"id\": \"ddc389b7-ba97-4c28-9f73-698db8608789\",\n                        \"type\": \"package\",\n                        \"detail\": \"Winter Sports Package (excess £50/person, or £100/family)\",\n                        \"amount\": 43.33,\n                        \"product_package_id\": 2218\n                    },\n                    {\n                        \"id\": \"6df97cd0-7c23-48de-8937-434fe3a2518d\",\n                        \"type\": \"package\",\n                        \"detail\": \"Cancellation, Curtailment and Missed Connection\",\n                        \"amount\": 13.71,\n                        \"product_package_id\": 2219\n                    },\n                    {\n                        \"id\": \"fbd2de32-8918-4519-a653-2d86a26c8d17\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"2000\",\n                        \"product_package_id\": 2219\n                    },\n                    {\n                        \"id\": \"355f67a5-abdf-4047-b3f1-fb53b1a1e9a5\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Loss or Delay\",\n                        \"amount\": 8.14,\n                        \"product_package_id\": 2221\n                    },\n                    {\n                        \"id\": \"6ae35d39-afb7-47d6-ab57-bc0b91ebd768\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"2000\",\n                        \"product_package_id\": 2221\n                    },\n                    {\n                        \"id\": \"4c489b87-0610-463e-b07b-faf27b51eb57\",\n                        \"type\": \"package\",\n                        \"detail\": \"Activities Package\",\n                        \"amount\": 21.66,\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"7fc2d8f7-bac7-4a14-9dfe-87e658e8c7dc\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"1\",\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"71ecfc25-101c-4b26-b628-66e3588a1aec\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"1893f84f-91cb-475e-b42e-3b2b6b269031\",\n                        \"type\": \"level\",\n                        \"detail\": \"31 days\",\n                        \"amount\": 0,\n                        \"value\": \"3564\",\n                        \"product_package_id\": 2210\n                    },\n                    {\n                        \"id\": \"272421fc-3120-410c-bc77-9a5def6b409b\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 100000,\n                        \"value\": \"3567\",\n                        \"product_package_id\": 2218\n                    },\n                    {\n                        \"id\": \"c6a1b6eb-726c-4033-a2ef-54bce1a5b0e5\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 5000,\n                        \"value\": \"3568\",\n                        \"product_package_id\": 2219\n                    },\n                    {\n                        \"id\": \"030960d6-603f-4d53-ad53-6cb968690e88\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 5000,\n                        \"value\": \"3570\",\n                        \"product_package_id\": 2221\n                    },\n                    {\n                        \"id\": \"5571f903-66d8-4012-83a8-099c057e235a\",\n                        \"type\": \"level\",\n                        \"detail\": \"1\",\n                        \"amount\": 100000,\n                        \"value\": \"3572\",\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"15252791-be48-4123-bb29-70acf7ac9cdd\",\n                        \"type\": \"tax\",\n                        \"detail\": \"tax\",\n                        \"amount\": 21.66\n                    },\n                    {\n                        \"id\": \"887f9e72-6440-42ed-a7e7-0913ea2316a3\",\n                        \"type\": \"minimum\",\n                        \"detail\": \"package\",\n                        \"for\": \"package\",\n                        \"amount\": 0,\n                        \"value\": \"0\",\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"f42303e1-2c97-41cd-94c1-4c898788692a\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 108.3\n                    },\n                    {\n                        \"id\": \"e13cfdaf-3350-4770-aaf0-fc39e7630a9e\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 129.96\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson KM\",\n                    \"dob\": \"1959-01-01\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"662fb26000f0238a280d6671\",\n                    \"currency_id\": \"GBP\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-04-29T14:50:25.917000Z\",\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson KM\",\n                        \"dob\": \"1959-01-01\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"testing@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"GB\",\n                        \"ip_address\": \"172.24.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-APR9C69-5AA6A8C8C1FA\",\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-04-29T14:50:26.455000Z\",\n                    \"premium\": 178.71,\n                    \"total\": 214.45,\n                    \"fees\": 0,\n                    \"tax\": 35.74,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"tax\",\n                            \"detail\": \"tax\",\n                            \"amount\": 35.74,\n                            \"id\": \"f044dbab-c729-4539-a81a-c8289c9c43db\",\n                            \"_id\": \"662fb3b61824db504404254e\"\n                        }\n                    ],\n                    \"client_id\": 1,\n                    \"client_referral_code\": \"bS5FvXHJY9st\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-04-29T14:50:31.304000Z\",\n                    \"created_at\": \"2024-04-29T14:50:31.304000Z\",\n                    \"_id\": \"662fb3b71824db504404254f\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destination_groups\": [\n                    {\n                        \"name\": \"europe\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"db1cf713-b860-46c7-bcd9-e087e72438c0\",\n                \"product_id\": 1023,\n                \"program_id\": 13,\n                \"product_uuid\": \"afb5a838-2b7a-46b4-b48d-293b62c9d888\",\n                \"product_name\": \"Hamilton Annual Multi Trip\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 25,\n                \"product_minor_id\": 125,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-APRBCD9-E087E72438C0-2\",\n                \"start_at\": \"2024-05-18\",\n                \"end_at\": \"2025-05-18\",\n                \"deposit_at\": \"2024-04-29\",\n                \"details\": [\n                    {\n                        \"id\": \"d8843869-6d27-4475-8fa9-211c6f66da62\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"323e2da1-e9b1-44bf-bc37-9114b93b3091\",\n                        \"type\": \"package\",\n                        \"detail\": \"Maximum Trip Duration\",\n                        \"amount\": 0,\n                        \"product_package_id\": 2210\n                    },\n                    {\n                        \"id\": \"05963517-caa3-4ca1-8c61-2daee3d1582e\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"31\",\n                        \"product_package_id\": 2210\n                    },\n                    {\n                        \"id\": \"9fdbe697-17b6-407d-8556-5dc765673440\",\n                        \"type\": \"package\",\n                        \"detail\": \"Emergency Medical and Additional Expenses (£10,000,000)\",\n                        \"amount\": 8.91,\n                        \"product_package_id\": 2211\n                    },\n                    {\n                        \"id\": \"7dd81984-fdda-4573-b0bd-ac19f59ec6ab\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Accident (£50,000)\",\n                        \"amount\": 0.59,\n                        \"product_package_id\": 2212\n                    },\n                    {\n                        \"id\": \"bcce1b03-19d5-49bb-bd7d-46c794cc2b69\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Money and Passport (£500)\",\n                        \"amount\": 2.56,\n                        \"product_package_id\": 2213\n                    },\n                    {\n                        \"id\": \"95708ae4-49b8-4a2a-a793-d2958eb087b0\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability (£2,000,000)\",\n                        \"amount\": 0.59,\n                        \"product_package_id\": 2214\n                    },\n                    {\n                        \"id\": \"eea16319-076d-4c67-accd-f7db3e5ae62d\",\n                        \"type\": \"package\",\n                        \"detail\": \"Legal Expenses (£25,000)\",\n                        \"amount\": 0.59,\n                        \"product_package_id\": 2215\n                    },\n                    {\n                        \"id\": \"d81ead5a-8acd-445b-a24b-47803f92dfa3\",\n                        \"type\": \"package\",\n                        \"detail\": \"Hijack (£100 per day, maximum £5,000)\",\n                        \"amount\": 0.14,\n                        \"product_package_id\": 2216\n                    },\n                    {\n                        \"id\": \"cc2ae03b-26b7-4627-96b0-62fd638ac2d8\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Delay (£500)\",\n                        \"amount\": 0.59,\n                        \"product_package_id\": 2217\n                    },\n                    {\n                        \"id\": \"505b336f-e4ff-4b0f-ada0-7b1ff4d5b6f5\",\n                        \"type\": \"package\",\n                        \"detail\": \"Winter Sports Package (excess £50/person, or £100/family)\",\n                        \"amount\": 28.16,\n                        \"product_package_id\": 2218\n                    },\n                    {\n                        \"id\": \"d0d4f751-b067-4ef9-8d11-076872779f4c\",\n                        \"type\": \"package\",\n                        \"detail\": \"Cancellation, Curtailment and Missed Connection\",\n                        \"amount\": 8.91,\n                        \"product_package_id\": 2219\n                    },\n                    {\n                        \"id\": \"9613ca2e-2a17-49ee-85c8-adcbaf0e394e\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"2000\",\n                        \"product_package_id\": 2219\n                    },\n                    {\n                        \"id\": \"34ce7a20-2002-49fa-bb4f-a85aa8985867\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Loss or Delay\",\n                        \"amount\": 5.29,\n                        \"product_package_id\": 2221\n                    },\n                    {\n                        \"id\": \"62ea61b1-b456-413c-97e6-b5b040964b0c\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"2000\",\n                        \"product_package_id\": 2221\n                    },\n                    {\n                        \"id\": \"8653e668-9b5d-483d-8874-45f50234c551\",\n                        \"type\": \"package\",\n                        \"detail\": \"Activities Package\",\n                        \"amount\": 14.08,\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"c7cffe93-064c-4624-b0f0-f191561e394e\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"1\",\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"d536c6eb-5ba2-4fa9-b67e-02ec82df7fe0\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"eda8d181-6364-4657-b0a9-ace345d1b4f9\",\n                        \"type\": \"level\",\n                        \"detail\": \"31 days\",\n                        \"amount\": 0,\n                        \"value\": \"3564\",\n                        \"product_package_id\": 2210\n                    },\n                    {\n                        \"id\": \"930509a8-d1a9-4ce4-bddf-9eb06642cbdc\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 100000,\n                        \"value\": \"3567\",\n                        \"product_package_id\": 2218\n                    },\n                    {\n                        \"id\": \"f87e44ee-3f95-4d86-91c5-eef71c72c7c6\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 5000,\n                        \"value\": \"3568\",\n                        \"product_package_id\": 2219\n                    },\n                    {\n                        \"id\": \"a5e52430-76cf-4bd4-bb79-2975136b3f4f\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 5000,\n                        \"value\": \"3570\",\n                        \"product_package_id\": 2221\n                    },\n                    {\n                        \"id\": \"d0125ba3-67cb-414f-bb37-eccdabd995e2\",\n                        \"type\": \"level\",\n                        \"detail\": \"1\",\n                        \"amount\": 100000,\n                        \"value\": \"3572\",\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"bfba1f76-8597-4423-a2bd-77be46db16aa\",\n                        \"type\": \"tax\",\n                        \"detail\": \"tax\",\n                        \"amount\": 14.08\n                    },\n                    {\n                        \"id\": \"b4c1f3c3-6f33-4f1c-8c90-9c6f3f09efdd\",\n                        \"type\": \"minimum\",\n                        \"detail\": \"package\",\n                        \"for\": \"package\",\n                        \"amount\": 0,\n                        \"value\": \"0\",\n                        \"product_package_id\": 2222\n                    },\n                    {\n                        \"id\": \"128b2847-ae54-48d2-8a1d-0c00bb6877ac\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 70.41\n                    },\n                    {\n                        \"id\": \"f17039d8-78da-492c-924f-372d74c3fedc\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 84.49\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Bob\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson KM\",\n                    \"dob\": \"1959-01-01\"\n                },\n                \"is_main\": false,\n                \"order\": {\n                    \"quote_id\": \"662fb26000f0238a280d6671\",\n                    \"currency_id\": \"GBP\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-04-29T14:50:25.917000Z\",\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson KM\",\n                        \"dob\": \"1959-01-01\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"testing@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"GB\",\n                        \"ip_address\": \"172.24.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-APR9C69-5AA6A8C8C1FA\",\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-04-29T14:50:26.455000Z\",\n                    \"premium\": 178.71,\n                    \"total\": 214.45,\n                    \"fees\": 0,\n                    \"tax\": 35.74,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"tax\",\n                            \"detail\": \"tax\",\n                            \"amount\": 35.74,\n                            \"id\": \"f044dbab-c729-4539-a81a-c8289c9c43db\",\n                            \"_id\": \"662fb3b61824db504404254e\"\n                        }\n                    ],\n                    \"client_id\": 1,\n                    \"client_referral_code\": \"bS5FvXHJY9st\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-04-29T14:50:31.304000Z\",\n                    \"created_at\": \"2024-04-29T14:50:31.304000Z\",\n                    \"_id\": \"662fb3b71824db504404254f\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destination_groups\": [\n                    {\n                        \"name\": \"europe\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson KM\",\n            \"dob\": \"1959-01-01\",\n            \"age_at_travel\": 35,\n            \"email\": \"ascifo@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"GB\",\n            \"state_code\": null,\n            \"ip_address\": \"172.24.0.50\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"firstaffiliate@testing123456.com\"\n        },\n        \"details\": [\n            {\n                \"id\": \"f044dbab-c729-4539-a81a-c8289c9c43db\",\n                \"type\": \"tax\",\n                \"detail\": \"tax\",\n                \"amount\": 35.74\n            }\n        ]\n    }\n}"},{"id":"1092edbd-108c-4ef4-add6-e6268c845b5b","name":"Corporate Travel Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"test-1234\",\n    \"currency_id\": \"USD\",\n    \"product_id\": \"1022\",\n    // -- 1038\n    \"start_at\": \"2024-12-01\",\n    \"end_at\": \"2024-12-15\",\n    \"deposit_at\": \"2024-06-01\",\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        },\n        {\n            \"type\": \"group\",\n            \"detail\": \"travelers\",\n            \"amount\": 84,\n            \"product_package_id\": \"base_package\"\n        },\n        {\n            \"type\": \"group\",\n            \"detail\": \"average_age\",\n            \"amount\": 30,\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [{\n        \"company_name\": \"Group of People LLC.\",\n        \"first_name\": \"Group\",\n        \"last_name\": \"Person\",\n        \"email\": \"mail@example.com\",\n        \"contact_number\": \"1110002222\",\n        \"address\": \"123 test street\",\n        \"city\": \"test city\",\n        \"post_code\": \"00000\",\n        \"country_code\": \"US\",\n        \"state_code\": \"OH\",\n        \"is_main\": true,\n        \"trip_cost\": \"5000\"\n    }],\n    \"insured\": [\n        {\n            \"type\": \"aditional\",\n            \"first_name\": \"John\",\n            \"middle_name\": \"Jonathan\",\n            \"last_name\": \"Johnson\"\n        },\n        {\n            \"type\": \"aditional\",\n            \"first_name\": \"John\",\n            \"middle_name\": \"Additional\",\n            \"last_name\": \"Doe\"\n        }\n    ],\n    \"destinations\": [\n        {\n            \"country_code\": \"US\",\n            \"state_code\": \"CA\"\n        }\n    ],\n    \"affiliate\": {\n        \"id\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"test-1234\",\n        \"order_number\": \"1-JUN830E-31ACA36D5B11\",\n        \"client_referral_code\": \"vPZfqyKSHoxN\",\n        \"client_id\": 4,\n        \"status\": \"Pending\",\n        \"premium\": 1514.52,\n        \"total\": 1514.52,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2024-06-25T09:17:40.828000Z\",\n        \"ordered_at\": \"2024-06-25T09:17:40.807000Z\",\n        \"items\": [\n            {\n                \"id\": \"38e31b87-74d5-4b4a-9253-e86089197bd2\",\n                \"product_id\": 1022,\n                \"program_id\": 12,\n                \"product_uuid\": \"492df985-d47e-11ed-b949-0242ac130002\",\n                \"product_name\": \"Corporate Group Plan\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 24,\n                \"product_minor_id\": 66,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-JUN9253-E86089197BD2-1\",\n                \"start_at\": \"2024-12-01\",\n                \"end_at\": \"2024-12-15\",\n                \"deposit_at\": \"2024-06-01\",\n                \"details\": [\n                    {\n                        \"id\": \"7004e3f8-a57c-40ba-af1f-e5606ef53707\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 1514.52,\n                        \"product_package_id\": 862\n                    },\n                    {\n                        \"id\": \"c37374cd-b1ff-4d9c-b86b-a1723b110ed5\",\n                        \"type\": \"group\",\n                        \"detail\": \"travelers\",\n                        \"amount\": 84,\n                        \"product_package_id\": 862\n                    },\n                    {\n                        \"id\": \"9b5bf95e-ce7a-43e1-927a-e3146e0978cf\",\n                        \"type\": \"group\",\n                        \"detail\": \"average_age\",\n                        \"amount\": 30,\n                        \"product_package_id\": 862\n                    },\n                    {\n                        \"id\": \"58417619-2f6f-4491-bcdd-ed14b4a9e875\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 5000\n                    },\n                    {\n                        \"id\": \"41c10014-5b07-4ed2-a8f5-13dc77ddc3ec\",\n                        \"type\": \"minimum\",\n                        \"detail\": \"package\",\n                        \"for\": \"package\",\n                        \"amount\": 0,\n                        \"value\": \"0\",\n                        \"product_package_id\": 862\n                    },\n                    {\n                        \"id\": \"746bbb57-bd76-448d-939d-75b814352062\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 1514.52\n                    },\n                    {\n                        \"id\": \"35ecedd6-cb19-44a2-aefb-644b540e617d\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 1514.52\n                    }\n                ],\n                \"insured\": {\n                    \"company_name\": \"Group of People LLC.\",\n                    \"first_name\": \"Group\",\n                    \"last_name\": \"Person\",\n                    \"dob\": \"1920-01-01\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"test-1234\",\n                    \"currency_id\": \"USD\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-06-25 09:17:40\",\n                    \"applicant\": {\n                        \"first_name\": \"Group\",\n                        \"last_name\": \"Person\",\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"1110002222\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"00000\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"dob\": \"1920-01-01\",\n                        \"age_at_travel\": 0,\n                        \"ip_address\": \"172.24.0.43\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"insured\": [\n                        {\n                            \"type\": \"aditional\",\n                            \"first_name\": \"John\",\n                            \"middle_name\": \"Jonathan\",\n                            \"last_name\": \"Johnson\",\n                            \"_id\": \"667a8b346cf6dcfd600abdaf\"\n                        },\n                        {\n                            \"type\": \"aditional\",\n                            \"first_name\": \"John\",\n                            \"middle_name\": \"Additional\",\n                            \"last_name\": \"Doe\",\n                            \"_id\": \"667a8b346cf6dcfd600abdb0\"\n                        }\n                    ],\n                    \"order_number\": \"1-JUN830E-31ACA36D5B11\",\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-06-25 09:17:40\",\n                    \"premium\": 1514.52,\n                    \"total\": 1514.52,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 4,\n                    \"client_referral_code\": \"vPZfqyKSHoxN\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-06-25T09:17:41.386000Z\",\n                    \"created_at\": \"2024-06-25T09:17:41.386000Z\",\n                    \"_id\": \"667a8b356cf6dcfd600abdbc\",\n                    \"meta\": null,\n                    \"details\": []\n                },\n                \"meta\": null,\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": \"United States of America\",\n                        \"state_code\": \"CA\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Group\",\n            \"last_name\": \"Person\",\n            \"dob\": \"1920-01-01\",\n            \"age_at_travel\": 0,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"1110002222\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"00000\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"ip_address\": \"172.24.0.43\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"firstaffiliate@testing123456.com\"\n        },\n        \"details\": [],\n        \"order_number_encrypted\": \"eyJpdiI6ImNYeXhMZXlCUVFzNWwvREgxYXBsZ3c9PSIsInZhbHVlIjoiZEVPL0JJcFFacmg0QzVIMnprdjlnQ1RmbmdCcHBDUVJYejZ5T1Jicmo5dVJCQUx4elNxWjcrelNmOWlaMGVoTmxWUzNjYnhwSmZad0dNdXNRNHo2Z2lCdEFIcllRUFgyc0tCN3ZtV0JYU3hlUXRpbjVuL3ZWVkxlcEtoc2xBK3EiLCJtYWMiOiIyMjM3NzVmZWRmY2VlMjZlN2UzOTI0ZDQ2ZGEwMDY1MGY3NDNkYmQ1MTVhNzZlOTVlMzAxZDI2MGM3YWI1MmU1IiwidGFnIjoiIn0=\"\n    }\n}"}],"_postman_id":"f8de8843-099a-4e54-bf1f-458c2b9fea6e"},{"name":"Get Order","id":"3c49bce3-84bb-4ce3-8385-681281c9aabd","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://gateway.battleface.com/api/partner/orders/{{v_order_number}}","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"bb3b79cb-95ae-462c-a522-4570d33d6ea0","id":"bb3b79cb-95ae-462c-a522-4570d33d6ea0","name":"Order","type":"folder"}},"urlObject":{"protocol":"https","path":["api","partner","orders","{{v_order_number}}"],"host":["gateway","battleface","com"],"query":[],"variable":[]}},"response":[{"id":"9d8555e9-d67f-4322-92ec-85a2eec7cea8","name":"Order","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://gateway.battleface.com/api/partner/orders/{{v_order_number}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 13 Jun 2024 06:58:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2805"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"66585a38e43c7275f50d018c\",\n        \"order_number\": \"1-JUNAC0B-55935CC6C17B\",\n        \"client_referral_code\": \"\",\n        \"client_id\": 54335,\n        \"status\": \"Pending\",\n        \"premium\": 777.83,\n        \"tax\": 6.94,\n        \"total\": 777.83,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2024-06-13T06:58:28.666000Z\",\n        \"ordered_at\": \"2024-06-13T06:58:28.639000Z\",\n        \"items\": [\n            {\n                \"id\": \"7fc8d26e-dc79-41e9-91d5-6e31e059188c\",\n                \"product_id\": 1001,\n                \"program_id\": 3,\n                \"product_uuid\": \"4656be98-de5d-45c7-88fc-1a747f0ea0c4\",\n                \"product_name\": \"Australian Intl Standard\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 3,\n                \"product_minor_id\": 1637,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-JUN91D5-6E31E059188C-1\",\n                \"start_at\": \"2024-06-18\",\n                \"end_at\": \"2024-07-02\",\n                \"deposit_at\": \"2024-06-13\",\n                \"details\": [\n                    {\n                        \"id\": \"063e1ff9-6ed1-4c0c-b999-f45fff9bbd0f\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"17cea96a-63d1-406c-bf92-2f11c92522ea\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Medical Package\",\n                        \"amount\": 89.02,\n                        \"product_package_id\": 13564\n                    },\n                    {\n                        \"id\": \"1a8c7fb4-0425-4758-9923-e01fac6546b4\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Interruption Package\",\n                        \"amount\": 176.35,\n                        \"product_package_id\": 13565\n                    },\n                    {\n                        \"id\": \"44f78594-e064-4495-a733-172d9891dad0\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"40000\",\n                        \"product_package_id\": 13565\n                    },\n                    {\n                        \"id\": \"100331f3-4734-41aa-a584-55b8d79d0ec2\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Delay Package\",\n                        \"amount\": 2.68,\n                        \"product_package_id\": 13566\n                    },\n                    {\n                        \"id\": \"16ae6f72-f021-4a8e-b1da-f3e7c9ce2620\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Accident Package\",\n                        \"amount\": 0.25,\n                        \"product_package_id\": 13567\n                    },\n                    {\n                        \"id\": \"71c1a538-e66d-4a5f-bac8-0a6e07d2dda0\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 5,\n                        \"product_package_id\": 13568\n                    },\n                    {\n                        \"id\": \"e2e54368-e86c-4663-a097-b5d737e35882\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 23.45,\n                        \"product_package_id\": 13569\n                    },\n                    {\n                        \"id\": \"e218c4b5-985f-460e-8a7b-37081f75f93a\",\n                        \"type\": \"package\",\n                        \"detail\": \"Snow Package\",\n                        \"amount\": 187.93,\n                        \"product_package_id\": 13571\n                    },\n                    {\n                        \"id\": \"52115100-6872-48df-91b2-cbeb758c46f1\",\n                        \"type\": \"package\",\n                        \"detail\": \"Motorcycle / Moped Pack\",\n                        \"amount\": 26,\n                        \"product_package_id\": 13572\n                    },\n                    {\n                        \"id\": \"0bdd08f0-a65e-479e-bee5-4df0c2f11da0\",\n                        \"type\": \"package\",\n                        \"detail\": \"Cruise Pack\",\n                        \"amount\": 128.59,\n                        \"product_package_id\": 13573\n                    },\n                    {\n                        \"id\": \"a8c8f0a9-f1c4-4500-9852-8ea7a8bd41df\",\n                        \"type\": \"package\",\n                        \"detail\": \"Pet Boarding\",\n                        \"amount\": 2.04,\n                        \"product_package_id\": 13574\n                    },\n                    {\n                        \"id\": \"cc48eaa6-3566-4dec-99b9-bea9958df00d\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 136.52,\n                        \"product_package_id\": 13570\n                    },\n                    {\n                        \"id\": \"f61dd36c-6325-4183-ba27-ad561872357f\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"8000\",\n                        \"product_package_id\": 13570\n                    },\n                    {\n                        \"id\": \"8d958590-e4d0-4465-9cad-e4b9a9f30c46\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2024-06-18\",\n                        \"product_package_id\": 13570\n                    },\n                    {\n                        \"id\": \"13b4ae06-f98a-4757-a3b6-173dbe6368e3\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2024-07-02\",\n                        \"product_package_id\": 13570\n                    },\n                    {\n                        \"id\": \"1d559a95-791b-43d9-bf10-edcabf9dc6da\",\n                        \"type\": \"level\",\n                        \"detail\": \"Unlimited\",\n                        \"amount\": 2000000,\n                        \"value\": \"19657\",\n                        \"product_package_id\": 13564\n                    },\n                    {\n                        \"id\": \"b15d1488-f8f3-4839-b7ef-8ec2bb87145c\",\n                        \"type\": \"level\",\n                        \"detail\": \"40000\",\n                        \"amount\": 40000,\n                        \"value\": \"19669\",\n                        \"product_package_id\": 13565\n                    },\n                    {\n                        \"id\": \"10d3ea07-f6a2-41dc-978b-f3c3335741f5\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 2000,\n                        \"value\": \"19670\",\n                        \"product_package_id\": 13566\n                    },\n                    {\n                        \"id\": \"c93cd245-a7e0-48bf-b3a8-10816a500414\",\n                        \"type\": \"level\",\n                        \"detail\": \"50000\",\n                        \"amount\": 50000,\n                        \"value\": \"19671\",\n                        \"product_package_id\": 13567\n                    },\n                    {\n                        \"id\": \"7e616bed-b808-4edc-bbb1-a3614709e543\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 2500000,\n                        \"value\": \"19672\",\n                        \"product_package_id\": 13568\n                    },\n                    {\n                        \"id\": \"ef3cd1cf-c92e-4479-835a-2ed106193551\",\n                        \"type\": \"level\",\n                        \"detail\": \"1000\",\n                        \"amount\": 1000,\n                        \"value\": \"19673\",\n                        \"product_package_id\": 13569\n                    },\n                    {\n                        \"id\": \"b0d6a857-b84e-4f38-9f0a-6ece9b998f31\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"20049\",\n                        \"product_package_id\": 13571\n                    },\n                    {\n                        \"id\": \"4c7168a5-a956-40ce-a8c9-9348e4a98286\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"20050\",\n                        \"product_package_id\": 13572\n                    },\n                    {\n                        \"id\": \"7ae16d11-4196-45ec-9123-e21584335623\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"20051\",\n                        \"product_package_id\": 13573\n                    },\n                    {\n                        \"id\": \"9e643d94-7c2a-4611-93b0-9f094f703261\",\n                        \"type\": \"level\",\n                        \"detail\": \"1400\",\n                        \"amount\": 1400,\n                        \"value\": \"20052\",\n                        \"product_package_id\": 13574\n                    },\n                    {\n                        \"id\": \"5ec6a494-6c24-4fb9-a41f-9c9f28f57ddb\",\n                        \"type\": \"level\",\n                        \"detail\": \"15 days\",\n                        \"amount\": 300,\n                        \"value\": \"19695\",\n                        \"product_package_id\": 13570\n                    },\n                    {\n                        \"id\": \"72a407e0-a7ff-416c-9010-ae36e1bbd75a\",\n                        \"type\": \"level\",\n                        \"detail\": \"8000\",\n                        \"amount\": 8000,\n                        \"value\": \"20048\",\n                        \"product_package_id\": 13570\n                    },\n                    {\n                        \"id\": \"adf9cc4c-5bf6-4fe0-bdc7-7d2483a72fe2\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 6.94\n                    },\n                    {\n                        \"id\": \"5b2205f4-485d-4031-a1f8-478cb6d487d8\",\n                        \"type\": \"included_breakdown_tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 23.13\n                    },\n                    {\n                        \"id\": \"48fbb414-f7cb-48e1-b226-18ee2c90b22d\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"gst\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"01d6ab08-d37c-4258-991a-707b83fcfa46\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_stamp_duty\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"c88179d9-c7c4-444a-8e08-d6db3ef45073\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_gst\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"412472b0-7be7-44f1-9aa4-e25c7e9d85a0\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 777.83\n                    },\n                    {\n                        \"id\": \"afed61ed-8251-4e12-a45d-f5f45eec1d60\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 777.83\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Test Name\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1990-01-05\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"_id\": \"666a9895939fa3d30001d48d\",\n                    \"quote_id\": \"66585a38e43c7275f50d018c\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-06-13 06:58:28\",\n                    \"applicant\": {\n                        \"first_name\": \"Test Name\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1990-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mnordin@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"KING STREET, NEWTOWN\",\n                        \"city\": \"Sydney\",\n                        \"post_code\": \"2055\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"ip_address\": \"172.31.43.151\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-JUNAC0B-55935CC6C17B\",\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-06-13 06:58:28\",\n                    \"premium\": 777.83,\n                    \"total\": 777.83,\n                    \"fees\": 0,\n                    \"tax\": 6.94,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"stamp_duty\",\n                            \"amount\": 6.94,\n                            \"id\": \"c211ffcf-9c30-4d54-a80d-a944b2334d42\",\n                            \"_id\": \"666a9895939fa3d30001d488\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"gst\",\n                            \"amount\": 0,\n                            \"id\": \"fb397bf2-29e3-42d0-99e1-bfa0b89a790c\",\n                            \"_id\": \"666a9895939fa3d30001d489\"\n                        },\n                        {\n                            \"type\": \"included_breakdown_tax\",\n                            \"detail\": \"witholding\",\n                            \"amount\": 23.13,\n                            \"id\": \"db968405-91ed-4d4f-856d-99274e24c2f5\",\n                            \"_id\": \"666a9895939fa3d30001d48a\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_stamp_duty\",\n                            \"amount\": 0,\n                            \"id\": \"f6053d56-4846-41ad-8e66-af438daf3084\",\n                            \"_id\": \"666a9895939fa3d30001d48b\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_gst\",\n                            \"amount\": 0,\n                            \"id\": \"36e3ad5f-5e79-42ff-9670-0744b9ac5cbe\",\n                            \"_id\": \"666a9895939fa3d30001d48c\"\n                        }\n                    ],\n                    \"client_id\": 54335,\n                    \"client_referral_code\": \"\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-06-13T06:58:29.926000Z\",\n                    \"created_at\": \"2024-06-13T06:58:29.926000Z\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destinations\": [\n                    {\n                        \"country_code\": \"GE\",\n                        \"country_name\": \"Georgia\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Test Name\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.31.43.151\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"jchapelle@battleface.com\"\n        },\n        \"details\": [\n            {\n                \"id\": \"c211ffcf-9c30-4d54-a80d-a944b2334d42\",\n                \"type\": \"included_tax\",\n                \"detail\": \"stamp_duty\",\n                \"amount\": 6.94\n            },\n            {\n                \"id\": \"fb397bf2-29e3-42d0-99e1-bfa0b89a790c\",\n                \"type\": \"included_tax\",\n                \"detail\": \"gst\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"db968405-91ed-4d4f-856d-99274e24c2f5\",\n                \"type\": \"included_breakdown_tax\",\n                \"detail\": \"witholding\",\n                \"amount\": 23.13\n            },\n            {\n                \"id\": \"f6053d56-4846-41ad-8e66-af438daf3084\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_stamp_duty\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"36e3ad5f-5e79-42ff-9670-0744b9ac5cbe\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_gst\",\n                \"amount\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"3c49bce3-84bb-4ce3-8385-681281c9aabd"}],"id":"bb3b79cb-95ae-462c-a522-4570d33d6ea0","description":"<p><strong>Order Request:</strong> Once the customer confirms their choice, you will submit an order. This is very similar to our quote call but with additional fields such as address, name, etc.</p>\n<p><strong>Order Response:</strong> This order details such as policy number, customer info, etc. will be returned. The order will remain in the pending status until payment is received.</p>\n<p><a href=\"https://developers.battleface.com/#f8de8843-099a-4e54-bf1f-458c2b9fea6e\"><i>Create Order</i></a> is our standard order call that you will use when creating an order.</p>\n<p><a href=\"https://developers.battleface.com/#3c49bce3-84bb-4ce3-8385-681281c9aabd\"><i>Get Order </i></a> can be used to retrieve an order.</p>\n<p><strong>For Assistance Partners Only:</strong></p>\n<p>If you are not selling one of our insurance products and we are just providing administration and services, you will use a different endpoint. In this scenario, you will use our <a href=\"https://developers.battleface.com/#d2ee7e02-fd74-43ef-9b5b-4cb6e5910395\"><i>Store Order Only</i></a> where policies are quoted and payment finalized entirely outside of the battleface ecosystem. battleface simply needs to collect policy data for policies sold so we can administer services (claims, assistance, customer support, etc) to policyholders.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"557cbbee-7b89-4982-8d67-0a4001db1865"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"add1b5e2-fa0c-42c9-abb4-74811fda30c2"}}],"_postman_id":"bb3b79cb-95ae-462c-a522-4570d33d6ea0"},{"name":"Payments","item":[{"name":"Payment Intent","id":"95c908fd-8a14-4826-b480-611cdd571be6","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/payment/intent","description":"<p>This is used when you do not have (or do not wish to have) direct access to the customer's payment details. It will prepare a page for the transaction to occur. Passing the \"client_secret\" to Stripe when sending the customer there to pay will associate it with this payment intent. The client will then enter their details on the Stripe website completing the payment.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"d4717868-507d-4876-8a29-25adc21a5073","id":"d4717868-507d-4876-8a29-25adc21a5073","name":"Payments","type":"folder"}},"urlObject":{"path":["api","partner","orders","{{order_number}}","payment","intent"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"7a6071dd-6800-4cb9-aee5-3ff45514757a","name":"Success Intent","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/orders/{{v_order_number}}/payment/intent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 18:56:58 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"pi_3MAHwMEeHpjs5LRo15IXvxlS\",\n        \"merchantToken\": \"b184dffab372bea2a7694bd7cda39c78\",\n        \"customerToken\": \"15ec31d3048456084acc9dc0f7faaca2\",\n        \"name\": \"Stripe\",\n        \"status\": \"Approved\",\n        \"client_secret\": \"pi_3MAHwMEeHpjs5LRo15IXvxlS_secret_6YCwSKGcYLml9ahaOcFcmbvW2\"\n    }\n}"},{"id":"02e61223-e1ef-4de6-a948-8c7461c032b2","name":"Call Without Scope (gateway-affiliate--api-partner-payment-intent)","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/orders/{{v_order_number}}/payment/intent"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 18:56:03 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Scope not valid.\",\n    \"error\": \"Scope not valid.\",\n    \"errors\": [],\n    \"meta\": {\n        \"type\": \"Illuminate\\\\Auth\\\\AuthenticationException\"\n    }\n}"}],"_postman_id":"95c908fd-8a14-4826-b480-611cdd571be6"},{"name":"Process Payment","id":"acb67aa0-d927-4b0e-a3b2-5b0646266b80","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"Approved\",\n    \"generate_docs\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/payment/status","description":"<p>This is used to manually approve an order. This should only be used if the payment has been confirmed as received, but the order has not changed to approved automatically.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"d4717868-507d-4876-8a29-25adc21a5073","id":"d4717868-507d-4876-8a29-25adc21a5073","name":"Payments","type":"folder"}},"urlObject":{"path":["api","partner","orders","{{order_number}}","payment","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"41a1b918-783d-4efe-9d97-fa35cb86a8ab","name":"Success Order Update","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"Approved\",\n    \"generate_docs\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/payment/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 18:43:56 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6388da3cf57124e1a8016b12\",\n        \"order_number\": \"1-DEC8CF8-D2AA4AE2657E\",\n        \"client_id\": 123,\n        \"status\": \"Approved\",\n        \"premium\": 20,\n        \"total\": 20,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2022-12-01T18:43:56.001000Z\",\n        \"ordered_at\": \"2022-12-01T18:36:01.648000Z\",\n        \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n        \"items\": [\n            {\n                \"id\": \"02e1cbd9-f64d-48fd-940a-542cda536a8e\",\n                \"product_id\": 1007,\n                \"program_id\": 10,\n                \"product_uuid\": \"b9add08c-39b4-4faf-bbc3-1ea8e6816859\",\n                \"product_name\": \"Generic US Product\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 9,\n                \"product_minor_id\": 137,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DEC940A-542CDA536A8E-1\",\n                \"start_at\": \"2022-12-05\",\n                \"end_at\": \"2022-12-15\",\n                \"deposit_at\": \"2022-07-09\",\n                \"details\": [\n                    {\n                        \"id\": \"05e47328-98ee-4f95-a9d3-7126291d7427\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 20,\n                        \"product_package_id\": 83\n                    },\n                    {\n                        \"id\": \"392d34be-3a29-42de-815f-202a541db61a\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"49072665-c15d-4aa0-8a0b-1df27764a238\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 20\n                    },\n                    {\n                        \"id\": \"a72ca55d-b309-4f11-bcf7-25f6275422c9\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 20\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1997-01-05\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"Pied\",\n                    \"middle_name\": \"ied\",\n                    \"last_name\": \"Piper\",\n                    \"email\": \"mail@example.com\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": \"United States of America\"\n                    }\n                ],\n                \"is_main\": true,\n                \"order\": {\n                    \"_id\": \"6388f412c94d1ba03202dcd8\",\n                    \"quote_id\": \"6388da3cf57124e1a8016b12\",\n                    \"currency_id\": \"USD\",\n                    \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1997-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mnordin@battleface.com\",\n                        \"contact_number\": \"00467344912\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"ip_address\": \"172.31.10.89\"\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 2,\n                    \"status\": \"Approved\",\n                    \"status_updated_at\": \"2022-12-01T18:43:56.001000Z\",\n                    \"ordered_at\": \"2022-12-01T18:36:01.648000Z\",\n                    \"order_number\": \"1-DEC8CF8-D2AA4AE2657E\",\n                    \"premium\": 20,\n                    \"total\": 20,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 123,\n                    \"updated_at\": \"2022-12-01T18:43:56.611000Z\",\n                    \"created_at\": \"2022-12-01T18:36:02.299000Z\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"ip_address\": \"172.31.10.89\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        }\n    }\n}"},{"id":"9e1b123d-adbc-47be-84c7-27c39996cb95","name":"Call Without Scope (gateway-affiliate--api-partner-payment-process)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"Approved\",\n    \"generate_docs\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/payment/status"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 18:53:17 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Scope not valid.\",\n    \"error\": \"Scope not valid.\",\n    \"errors\": [],\n    \"meta\": {\n        \"type\": \"Illuminate\\\\Auth\\\\AuthenticationException\"\n    }\n}"},{"id":"29682a98-9242-4a07-9834-b6196add199f","name":"Cancel Approved Order","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"Cancelled\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/payment/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 29 Jun 2023 14:06:49 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6421a37ce2769c519400acd7\",\n        \"order_number\": \"1-JUN8668-D735471FA063\",\n        \"client_id\": 54335,\n        \"status\": \"Cancelled\",\n        \"premium\": 0,\n        \"total\": 0,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2023-06-29T14:06:48.924000Z\",\n        \"ordered_at\": \"2023-06-29T14:06:33.563000Z\",\n        \"approved_at\": \"2023-06-29T14:06:39.386000Z\",\n        \"items\": [\n            {\n                \"id\": \"88e5e4a3-7e80-4935-83a5-4b5e0e08d64c\",\n                \"product_id\": 1001,\n                \"program_id\": 3,\n                \"product_uuid\": \"4656be98-de5d-45c7-88fc-1a747f0ea0c4\",\n                \"product_name\": \"Australian Standard\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 3,\n                \"product_minor_id\": 870,\n                \"policy_file_id\": 11249,\n                \"policy_number\": \"1-JUN83A5-4B5E0E08D64C-1\",\n                \"start_at\": \"2023-07-04\",\n                \"end_at\": \"2023-07-25\",\n                \"deposit_at\": \"2023-06-29\",\n                \"details\": [\n                    {\n                        \"id\": \"3bb01efa-39b1-4f56-8347-3b6e3efdfe88\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"679e54ed-b316-4771-81a8-e52351c11960\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Medical Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1686\n                    },\n                    {\n                        \"id\": \"16e5578c-2b1e-48ea-b97c-dda981e13885\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Interruption Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1687\n                    },\n                    {\n                        \"id\": \"b2fe0b27-2cdd-4cb5-bfcc-78159c3445cc\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"40000\",\n                        \"product_package_id\": 1687\n                    },\n                    {\n                        \"id\": \"49b8a2c2-59cf-4d00-aa7a-d53da5b4cfbd\",\n                        \"type\": \"package\",\n                        \"detail\": \"Travel Delay Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1688\n                    },\n                    {\n                        \"id\": \"8adac2e2-a9d0-4f23-962c-572fe63f5112\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Accident Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1689\n                    },\n                    {\n                        \"id\": \"7c4ce0bf-3218-48eb-aadf-77407204f3aa\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1690\n                    },\n                    {\n                        \"id\": \"9c11498e-4729-436a-a15d-9f3ebb2c9a1f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1691\n                    },\n                    {\n                        \"id\": \"f6c05979-0482-408e-adcc-b1cbbbcc59ed\",\n                        \"type\": \"package\",\n                        \"detail\": \"Snow Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1693\n                    },\n                    {\n                        \"id\": \"bd96bc08-ae05-4fbf-88f7-0cc3c29e3432\",\n                        \"type\": \"package\",\n                        \"detail\": \"Motorcycle / Moped Pack\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1694\n                    },\n                    {\n                        \"id\": \"8b235c7d-1c05-46c2-8402-e7b3554cc21e\",\n                        \"type\": \"package\",\n                        \"detail\": \"Cruise Pack\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1695\n                    },\n                    {\n                        \"id\": \"8d96132c-5742-44a9-a568-ad986a8296d1\",\n                        \"type\": \"package\",\n                        \"detail\": \"Pet Cover\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1696\n                    },\n                    {\n                        \"id\": \"d8e5417b-808a-49bc-8057-24b90bde9017\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 1692\n                    },\n                    {\n                        \"id\": \"2b55fbfb-7d0e-46aa-8af9-e192a1d23cb3\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2023-07-04\",\n                        \"product_package_id\": 1692\n                    },\n                    {\n                        \"id\": \"8c541f68-fda7-4cf9-87b9-e005dc2d99a9\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2023-07-25\",\n                        \"product_package_id\": 1692\n                    },\n                    {\n                        \"id\": \"6ff8d8e9-731a-4567-87c4-0a6eb1c3730c\",\n                        \"type\": \"level\",\n                        \"detail\": \"Unlimited\",\n                        \"amount\": 2000000,\n                        \"value\": \"9865\",\n                        \"product_package_id\": 1686\n                    },\n                    {\n                        \"id\": \"36ff88a7-e0d6-4a01-9fe3-b230fd5cfdd0\",\n                        \"type\": \"level\",\n                        \"detail\": \"40000\",\n                        \"amount\": 40000,\n                        \"value\": \"9877\",\n                        \"product_package_id\": 1687\n                    },\n                    {\n                        \"id\": \"5d1a45ce-d15d-4194-9fc0-a89584d7ffff\",\n                        \"type\": \"level\",\n                        \"detail\": \"2000\",\n                        \"amount\": 2000,\n                        \"value\": \"9878\",\n                        \"product_package_id\": 1688\n                    },\n                    {\n                        \"id\": \"3fa06bea-20db-4a1f-a703-cc1854ab55c9\",\n                        \"type\": \"level\",\n                        \"detail\": \"25000\",\n                        \"amount\": 25000,\n                        \"value\": \"9879\",\n                        \"product_package_id\": 1689\n                    },\n                    {\n                        \"id\": \"ef6a9b12-b2ce-4803-aec2-f61ca5417bf0\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 2500000,\n                        \"value\": \"9880\",\n                        \"product_package_id\": 1690\n                    },\n                    {\n                        \"id\": \"3cbe9c8c-c538-4e40-9ff3-75409283fec8\",\n                        \"type\": \"level\",\n                        \"detail\": \"1000\",\n                        \"amount\": 1000,\n                        \"value\": \"9881\",\n                        \"product_package_id\": 1691\n                    },\n                    {\n                        \"id\": \"932b83aa-bb54-4b17-8613-172b7a492807\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"10255\",\n                        \"product_package_id\": 1693\n                    },\n                    {\n                        \"id\": \"b4a400e6-0fb8-4ad0-b8ff-c295ae066236\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"10256\",\n                        \"product_package_id\": 1694\n                    },\n                    {\n                        \"id\": \"1b635e70-d598-4ded-aedb-7508f123154d\",\n                        \"type\": \"level\",\n                        \"detail\": \"Covered\",\n                        \"amount\": 0,\n                        \"value\": \"10257\",\n                        \"product_package_id\": 1695\n                    },\n                    {\n                        \"id\": \"65122ba0-78ed-405f-a9fa-09fad2b6481e\",\n                        \"type\": \"level\",\n                        \"detail\": \"300\",\n                        \"amount\": 500,\n                        \"value\": \"10258\",\n                        \"product_package_id\": 1696\n                    },\n                    {\n                        \"id\": \"984f2596-cfb2-47f6-b894-d405db1acc38\",\n                        \"type\": \"level\",\n                        \"detail\": \"22 days\",\n                        \"amount\": 300,\n                        \"value\": \"9910\",\n                        \"product_package_id\": 1692\n                    },\n                    {\n                        \"id\": \"f5d5055c-4cc5-4f5f-a2c4-2fc950c03f9c\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"dff14152-ad86-4a2e-9bbd-8c5f00cc6065\",\n                        \"type\": \"included_breakdown_tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"320a82b9-0a83-4232-aaec-42780c1bcbe0\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"9c2d910b-04ab-41cc-9e88-4b169b95578c\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 0\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Test Name\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1990-01-05\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"GE\",\n                        \"country_name\": \"Georgia\"\n                    }\n                ],\n                \"is_main\": true,\n                \"order\": {\n                    \"_id\": \"649d8feb278d03546f0fb3aa\",\n                    \"quote_id\": \"6421a37ce2769c519400acd7\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"Test Name\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1990-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mnordin@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"KING STREET, NEWTOWN\",\n                        \"city\": \"Sydney\",\n                        \"post_code\": \"2055\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"ip_address\": \"172.31.15.29\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 3,\n                    \"status\": \"Cancelled\",\n                    \"status_updated_at\": \"2023-06-29T14:06:48.924000Z\",\n                    \"ordered_at\": \"2023-06-29T14:06:33.563000Z\",\n                    \"order_number\": \"1-JUN8668-D735471FA063\",\n                    \"premium\": 0,\n                    \"total\": 0,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"stamp_duty\",\n                            \"amount\": 0,\n                            \"id\": \"3dbd0412-36e6-4453-a5a2-9f44c7d65d58\",\n                            \"_id\": \"649d8ff8f19b9f13840abb4e\"\n                        },\n                        {\n                            \"type\": \"included_breakdown_tax\",\n                            \"detail\": \"witholding\",\n                            \"amount\": 0,\n                            \"id\": \"a16743b7-23d2-45ea-8a73-68100f5bc04b\",\n                            \"_id\": \"649d8ff8f19b9f13840abb4f\"\n                        }\n                    ],\n                    \"client_id\": 54335,\n                    \"updated_at\": \"2023-06-29T14:06:49.047000Z\",\n                    \"created_at\": \"2023-06-29T14:06:35.636000Z\",\n                    \"approved_at\": \"2023-06-29T14:06:39.386000Z\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Test Name\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.31.15.29\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        },\n        \"details\": [\n            {\n                \"id\": \"3dbd0412-36e6-4453-a5a2-9f44c7d65d58\",\n                \"type\": \"included_tax\",\n                \"detail\": \"stamp_duty\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"a16743b7-23d2-45ea-8a73-68100f5bc04b\",\n                \"type\": \"included_breakdown_tax\",\n                \"detail\": \"witholding\",\n                \"amount\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"acb67aa0-d927-4b0e-a3b2-5b0646266b80"}],"id":"d4717868-507d-4876-8a29-25adc21a5073","description":"<p>We have a few payment options available. The solution you use will primarily depend on who is the Merchant of Record for transactions.</p>\n<p><strong>Post Process Payment:</strong> First, let's take a look at when you (the partner) are Merchant of Record (MoR). In this scenario, you would be handling all payment functions. Once you receive premium funds, you would send us the <a href=\"https://developers.battleface.com/#acb67aa0-d927-4b0e-a3b2-5b0646266b80\"><i>Process Payment</i></a> call, letting us know that payment has been received. The order is then updated to approved in our system.</p>\n<p><strong>Get Payment Intent:</strong> By using the <a href=\"https://developers.battleface.com/#95c908fd-8a14-4826-b480-611cdd571be6\"><i>Payment Intent</i></a> endpoint, you (the partner) or battleface can be the MoR. This is used when you do not have (or do not wish to have) direct access to the customer's payment details. It will prepare a page for the transaction to occur. Passing the \"client_secret\" to Stripe when sending the customer there to pay will associate it with this payment intent. The client will then enter their details on the Stripe website completing the payment.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"c08129d8-c880-40ff-b5fb-701d2675a4a1"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"9c275b1a-f108-47e0-b795-fba08f48647a"}}],"_postman_id":"d4717868-507d-4876-8a29-25adc21a5073"},{"name":"Order Updates","item":[{"name":"Partial Update Allowed Fields","id":"a98dccf4-869e-451c-837d-45a156efc1ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/orders/fields","description":"<p>This endpoint returns a <strong>list of fields</strong> that are permitted for partial updates. Developers can use this to understand which fields can be safely updated without triggering errors.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","orders","fields"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"2556d230-a1c4-46f5-afbf-1e904ebaf4cc","name":"Partial Update Allowed Fields","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/orders/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    \"applicants\",\n    \"meta\",\n    \"agent\",\n    \"flags\",\n    \"insured\",\n    \"items\",\n    \"start_at\",\n    \"end_at\",\n    \"details\",\n    \"affiliate\"\n]"}],"_postman_id":"a98dccf4-869e-451c-837d-45a156efc1ae"},{"name":"Partial Order Preview","id":"3966646e-7f82-49a9-baa1-d5251ba3a44e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-11\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/preview","description":"<p><strong>Description:</strong><br />This endpoint allows for <strong>partial updates</strong> preview to an order (aka if the update to an endpoint is sent via this request we do not persit any change to the order but only return how the update would effect the order). Instead of providing the entire order payload, developers can send only the fields they want to update.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><strong>Path Parameter:</strong></li>\n</ul>\n<p><code>order_number</code> (string): The unique identifier for the order to update.</p>\n<ul>\n<li><strong>Request Body:</strong><br />  Fields available for partial updates. (Note fields in order-condesed endpoint are avaiable in this endpoint depeding ) Example:</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"start_at\": \"2024-12-01\",\n  \"end_at\": \"2025-12-01\"\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","orders","{{order_number}}","preview"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"159cb1be-7637-4670-ad62-6f8480bee654","name":"Updated","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-02\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"554654555\",\n        \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n        \"client_referral_code\": \"o5hXLuIG4Eeo\",\n        \"client_id\": 9,\n        \"status\": \"Pending\",\n        \"premium\": 201.88,\n        \"tax\": 33.5,\n        \"total\": 201.88,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2024-11-27T14:10:18.950000Z\",\n        \"ordered_at\": \"2024-11-27T14:10:18.808000Z\",\n        \"items\": [\n            {\n                \"id\": \"3d4d1798-f035-457a-8bcb-c85be56835d3\",\n                \"product_id\": 1037,\n                \"program_id\": 3,\n                \"product_uuid\": \"2fcc3f64-952b-45be-bc2a-46576aab0c60\",\n                \"product_name\": \"Australian Domestic\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 39,\n                \"product_minor_id\": 131,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-NOV8BCB-C85BE56835D3-1\",\n                \"start_at\": \"2024-12-21\",\n                \"end_at\": \"2025-01-11\",\n                \"deposit_at\": \"2024-11-27\",\n                \"effective_date\": \"2024-12-21\",\n                \"details\": [\n                    {\n                        \"id\": \"cf1e38d8-d0f2-43df-acd8-a703f7ae21b7\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"81899c92-eb59-49ff-8236-4c8bd8ca22db\",\n                        \"type\": \"affiliate_discount\",\n                        \"detail\": \"percentage\",\n                        \"value\": \"0\"\n                    },\n                    {\n                        \"id\": \"342408ff-6bdb-45eb-a3d8-c656fff6a436\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"10000\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"99e3a04e-85f5-4614-81de-b1ec860d5c6e\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 17.65,\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"670f25ae-7b9d-4486-92b7-1c251465143f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 109.2,\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"c960611b-dac5-4fd8-835e-e939188d8b3d\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-01\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"a734d9af-d37a-4af5-86df-a9869c2138e3\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-10\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"57dc767a-42f3-426d-b6fc-32ece7ad3e7a\",\n                        \"type\": \"level\",\n                        \"detail\": \"10000\",\n                        \"amount\": 10000,\n                        \"value\": \"5236\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"3c1c392d-0e44-4995-b7b1-c88256dc5e6b\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 2500000,\n                        \"value\": \"5611\",\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"56ec18a1-7826-461b-81a6-7f359dc95469\",\n                        \"type\": \"level\",\n                        \"detail\": \"500\",\n                        \"amount\": 500,\n                        \"value\": \"5237\",\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"0a0bb443-58e1-4a0e-b6a2-b85164451874\",\n                        \"type\": \"level\",\n                        \"detail\": \"10 days\",\n                        \"amount\": 10,\n                        \"value\": \"5252\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"694c024c-3f57-464e-974a-6d10f4f39370\",\n                        \"type\": \"level\",\n                        \"detail\": \"6000\",\n                        \"amount\": 6000,\n                        \"value\": \"5609\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"49e83913-3e2a-4e4b-b327-6d402298347f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Cancellation and Interruption Package\",\n                        \"amount\": 73.53,\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"add77389-e9ff-4182-ac5f-7c9a9c21fbcb\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 1.5,\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"4af7be49-6e94-414e-8327-9cfe7ea42b23\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 16.67\n                    },\n                    {\n                        \"id\": \"74cab8c3-29c4-4d17-a513-3933025c789b\",\n                        \"type\": \"included_breakdown_tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 5.05\n                    },\n                    {\n                        \"id\": \"976d67b7-cdef-4732-923e-70e30e7e2c71\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"gst\",\n                        \"amount\": 16.84\n                    },\n                    {\n                        \"id\": \"a8801a41-fdb7-4670-bc30-23d006bfd780\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_stamp_duty\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"e99016d9-10e8-4d00-be21-0dec83edb397\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_gst\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"28b46728-c863-4603-9ec1-1b3b9ae0e48f\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 201.88\n                    },\n                    {\n                        \"id\": \"042ced80-23ea-4cf8-b50f-97be7ed98cb3\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 201.88\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Test Name\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1990-01-05\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"_id\": \"6747284d855b6eb00302b472\",\n                    \"quote_id\": \"554654555\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-11-27 14:10:18\",\n                    \"applicant\": {\n                        \"first_name\": \"Test Name\",\n                        \"last_name\": \"Johnson\",\n                        \"email\": \"mnordin@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"KING STREET, NEWTOWN\",\n                        \"city\": \"Sydney\",\n                        \"post_code\": \"2055\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"dob\": \"1990-01-05\",\n                        \"age_at_travel\": 0,\n                        \"ip_address\": \"172.19.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n                    \"schema_version\": 1,\n                    \"document_version\": 3,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-11-27 14:10:18\",\n                    \"premium\": 201.88,\n                    \"total\": 201.88,\n                    \"fees\": 0,\n                    \"tax\": 33.5,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"affiliate_discount\",\n                            \"detail\": \"percentage\",\n                            \"amount\": 0,\n                            \"id\": \"01836cb0-6c2d-4541-8d61-ffd9420fda49\",\n                            \"_id\": \"67473ad719ff9a45c30793b6\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"stamp_duty\",\n                            \"amount\": 16.67,\n                            \"id\": \"76585469-f3a1-436a-899b-e84c50c1629c\",\n                            \"_id\": \"67473ad719ff9a45c30793b7\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"gst\",\n                            \"amount\": 16.84,\n                            \"id\": \"59c1d534-ca23-4bd0-87bd-d317b4702ba3\",\n                            \"_id\": \"67473ad719ff9a45c30793b8\"\n                        },\n                        {\n                            \"type\": \"included_breakdown_tax\",\n                            \"detail\": \"witholding\",\n                            \"amount\": 5.05,\n                            \"id\": \"7e64ce32-08e9-4b05-a47b-9b1482485a48\",\n                            \"_id\": \"67473ad719ff9a45c30793b9\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_stamp_duty\",\n                            \"amount\": 0,\n                            \"id\": \"2a98af93-8572-4b09-856a-ed468400ca48\",\n                            \"_id\": \"67473ad719ff9a45c30793ba\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_gst\",\n                            \"amount\": 0,\n                            \"id\": \"98995771-44f3-443b-8c18-1cb00020d1fc\",\n                            \"_id\": \"67473ad719ff9a45c30793bb\"\n                        }\n                    ],\n                    \"client_id\": 9,\n                    \"client_referral_code\": \"o5hXLuIG4Eeo\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-11-27T15:29:28.145000Z\",\n                    \"created_at\": \"2024-11-27T14:10:21.000000Z\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destinations\": [\n                    {\n                        \"country_code\": \"AU\",\n                        \"country_name\": \"Australia\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Test Name\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 0,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.19.0.50\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"firstaffiliate@testing123456.com\"\n        },\n        \"details\": [\n            {\n                \"id\": \"01836cb0-6c2d-4541-8d61-ffd9420fda49\",\n                \"type\": \"affiliate_discount\",\n                \"detail\": \"percentage\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"76585469-f3a1-436a-899b-e84c50c1629c\",\n                \"type\": \"included_tax\",\n                \"detail\": \"stamp_duty\",\n                \"amount\": 16.67\n            },\n            {\n                \"id\": \"59c1d534-ca23-4bd0-87bd-d317b4702ba3\",\n                \"type\": \"included_tax\",\n                \"detail\": \"gst\",\n                \"amount\": 16.84\n            },\n            {\n                \"id\": \"7e64ce32-08e9-4b05-a47b-9b1482485a48\",\n                \"type\": \"included_breakdown_tax\",\n                \"detail\": \"witholding\",\n                \"amount\": 5.05\n            },\n            {\n                \"id\": \"2a98af93-8572-4b09-856a-ed468400ca48\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_stamp_duty\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"98995771-44f3-443b-8c18-1cb00020d1fc\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_gst\",\n                \"amount\": 0\n            }\n        ]\n    }\n}"},{"id":"cb39537c-e06f-41d3-9a16-98562fd30989","name":"Forbidden Field","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-11\",\n    \"currency_id\": \"USD\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The field following keys are not allowed: currency_id\",\n    \"error\": \"The field following keys are not allowed: currency_id\",\n    \"errors\": {\n        \"message\": \"The field following keys are not allowed: currency_id\",\n        \"error\": \"The field following keys are not allowed: currency_id\",\n        \"errors\": [],\n        \"meta\": {\n            \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"},{"id":"e1ab67af-72ab-4de5-8f26-d4695ccc8930","name":"Update Applicant","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    // \"quote_id\": \"455656\",\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-10\",\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        },\n        {\n            \"type\": \"group\",\n            \"detail\": \"travelers\",\n            \"amount\": 180,\n            \"product_package_id\": \"base_package\"\n        },\n        {\n            \"type\": \"group\",\n            \"detail\": \"average_age\",\n            \"amount\": 40,\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"company_name\": \"Group of People LLC.\",\n            \"first_name\": \"Group\",\n            \"last_name\": \"Person\",\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"1110002222\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"00000\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"is_main\": true,\n            \"trip_cost\": \"5000\",\n            \"dob\":\"1995-01-01\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"554654555\",\n        \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n        \"client_referral_code\": \"o5hXLuIG4Eeo\",\n        \"client_id\": 8,\n        \"status\": \"Pending\",\n        \"premium\": 190.64,\n        \"tax\": 31.64,\n        \"total\": 190.64,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2024-11-27T14:10:18.950000Z\",\n        \"ordered_at\": \"2024-11-27T14:10:18.808000Z\",\n        \"items\": [\n            {\n                \"id\": \"3d4d1798-f035-457a-8bcb-c85be56835d3\",\n                \"product_id\": 1037,\n                \"program_id\": 3,\n                \"product_uuid\": \"2fcc3f64-952b-45be-bc2a-46576aab0c60\",\n                \"product_name\": \"Australian Domestic\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 39,\n                \"product_minor_id\": 131,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-NOV8BCB-C85BE56835D3-1\",\n                \"start_at\": \"2024-12-21\",\n                \"end_at\": \"2025-01-10\",\n                \"deposit_at\": \"2024-11-27\",\n                \"effective_date\": \"2024-12-21\",\n                \"details\": [\n                    {\n                        \"id\": \"cf1e38d8-d0f2-43df-acd8-a703f7ae21b7\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"81899c92-eb59-49ff-8236-4c8bd8ca22db\",\n                        \"type\": \"affiliate_discount\",\n                        \"detail\": \"percentage\",\n                        \"value\": \"0\"\n                    },\n                    {\n                        \"id\": \"342408ff-6bdb-45eb-a3d8-c656fff6a436\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"10000\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"c960611b-dac5-4fd8-835e-e939188d8b3d\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-01\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"a734d9af-d37a-4af5-86df-a9869c2138e3\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-10\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"57dc767a-42f3-426d-b6fc-32ece7ad3e7a\",\n                        \"type\": \"level\",\n                        \"detail\": \"10000\",\n                        \"amount\": 10000,\n                        \"value\": \"5236\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"3c1c392d-0e44-4995-b7b1-c88256dc5e6b\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 2500000,\n                        \"value\": \"5611\",\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"56ec18a1-7826-461b-81a6-7f359dc95469\",\n                        \"type\": \"level\",\n                        \"detail\": \"500\",\n                        \"amount\": 500,\n                        \"value\": \"5237\",\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"0a0bb443-58e1-4a0e-b6a2-b85164451874\",\n                        \"type\": \"level\",\n                        \"detail\": \"10 days\",\n                        \"amount\": 10,\n                        \"value\": \"5252\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"694c024c-3f57-464e-974a-6d10f4f39370\",\n                        \"type\": \"level\",\n                        \"detail\": \"6000\",\n                        \"amount\": 6000,\n                        \"value\": \"5609\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"99e3a04e-85f5-4614-81de-b1ec860d5c6e\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 16.12,\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"670f25ae-7b9d-4486-92b7-1c251465143f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 109.2,\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"49e83913-3e2a-4e4b-b327-6d402298347f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Cancellation and Interruption Package\",\n                        \"amount\": 63.82,\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"add77389-e9ff-4182-ac5f-7c9a9c21fbcb\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 1.5,\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"4af7be49-6e94-414e-8327-9cfe7ea42b23\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 15.74\n                    },\n                    {\n                        \"id\": \"74cab8c3-29c4-4d17-a513-3933025c789b\",\n                        \"type\": \"included_breakdown_tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 4.77\n                    },\n                    {\n                        \"id\": \"976d67b7-cdef-4732-923e-70e30e7e2c71\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"gst\",\n                        \"amount\": 15.9\n                    },\n                    {\n                        \"id\": \"a8801a41-fdb7-4670-bc30-23d006bfd780\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_stamp_duty\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"e99016d9-10e8-4d00-be21-0dec83edb397\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_gst\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"28b46728-c863-4603-9ec1-1b3b9ae0e48f\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 190.64\n                    },\n                    {\n                        \"id\": \"042ced80-23ea-4cf8-b50f-97be7ed98cb3\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 190.64\n                    }\n                ],\n                \"insured\": {\n                    \"company_name\": \"Group of People LLC.\",\n                    \"first_name\": \"Group\",\n                    \"last_name\": \"Person\",\n                    \"dob\": \"1995-01-01\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"_id\": \"6747284d855b6eb00302b472\",\n                    \"quote_id\": \"554654555\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-11-27 14:10:18\",\n                    \"applicant\": {\n                        \"first_name\": \"Group\",\n                        \"last_name\": \"Person\",\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"1110002222\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"00000\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"dob\": \"1995-01-01\",\n                        \"age_at_travel\": 0,\n                        \"ip_address\": \"172.19.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n                    \"schema_version\": 1,\n                    \"document_version\": 6,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-11-27 14:10:18\",\n                    \"premium\": 190.64,\n                    \"total\": 190.64,\n                    \"fees\": 0,\n                    \"tax\": 31.64,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 8,\n                    \"client_referral_code\": \"o5hXLuIG4Eeo\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-11-27T15:31:46.933000Z\",\n                    \"created_at\": \"2024-11-27T14:10:21.000000Z\",\n                    \"details\": [\n                        {\n                            \"type\": \"affiliate_discount\",\n                            \"detail\": \"percentage\",\n                            \"amount\": 0,\n                            \"id\": \"24935348-c9f3-4914-afd3-866275f568ab\",\n                            \"_id\": \"67473c43745b53346c08caee\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"stamp_duty\",\n                            \"amount\": 15.74,\n                            \"id\": \"f862af40-d514-423a-9d1f-dd0d5da105cc\",\n                            \"_id\": \"67473c43745b53346c08caef\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"gst\",\n                            \"amount\": 15.9,\n                            \"id\": \"73e89924-3bda-4df2-9bf6-9ad28e99a2a2\",\n                            \"_id\": \"67473c43745b53346c08caf0\"\n                        },\n                        {\n                            \"type\": \"included_breakdown_tax\",\n                            \"detail\": \"witholding\",\n                            \"amount\": 4.77,\n                            \"id\": \"ad31e6aa-6fab-441f-b9fd-9e1035dff874\",\n                            \"_id\": \"67473c43745b53346c08caf1\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_stamp_duty\",\n                            \"amount\": 0,\n                            \"id\": \"9f878d4a-ffb9-4a0d-b49e-ed6820c32a97\",\n                            \"_id\": \"67473c43745b53346c08caf2\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_gst\",\n                            \"amount\": 0,\n                            \"id\": \"579b1574-eb80-4c46-af13-f70be46bbe31\",\n                            \"_id\": \"67473c43745b53346c08caf3\"\n                        }\n                    ]\n                },\n                \"meta\": null,\n                \"destinations\": [\n                    {\n                        \"country_code\": \"AU\",\n                        \"country_name\": \"Australia\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Group\",\n            \"last_name\": \"Person\",\n            \"dob\": \"1995-01-01\",\n            \"age_at_travel\": 0,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"1110002222\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"00000\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.19.0.50\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"firstaffiliate@testing123456.com\"\n        },\n        \"details\": [\n            {\n                \"id\": \"24935348-c9f3-4914-afd3-866275f568ab\",\n                \"type\": \"affiliate_discount\",\n                \"detail\": \"percentage\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"f862af40-d514-423a-9d1f-dd0d5da105cc\",\n                \"type\": \"included_tax\",\n                \"detail\": \"stamp_duty\",\n                \"amount\": 15.74\n            },\n            {\n                \"id\": \"73e89924-3bda-4df2-9bf6-9ad28e99a2a2\",\n                \"type\": \"included_tax\",\n                \"detail\": \"gst\",\n                \"amount\": 15.9\n            },\n            {\n                \"id\": \"ad31e6aa-6fab-441f-b9fd-9e1035dff874\",\n                \"type\": \"included_breakdown_tax\",\n                \"detail\": \"witholding\",\n                \"amount\": 4.77\n            },\n            {\n                \"id\": \"9f878d4a-ffb9-4a0d-b49e-ed6820c32a97\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_stamp_duty\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"579b1574-eb80-4c46-af13-f70be46bbe31\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_gst\",\n                \"amount\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"3966646e-7f82-49a9-baa1-d5251ba3a44e"},{"name":"Partial Order Update","id":"e712c397-d203-4446-b998-0907648ffa72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-11\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}","description":"<p><strong>Description:</strong><br />This endpoint allows for <strong>partial updates</strong> to an order. Instead of providing the entire order payload, developers can send only the fields they want to update.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><strong>Path Parameter:</strong></li>\n</ul>\n<p><code>order_number</code> (string): The unique identifier for the order to update.</p>\n<ul>\n<li><strong>Request Body:</strong><br />  Fields available for partial updates. (Note fields in order-condesed endpoint are avaiable in this endpoint depeding ) Example:</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"start_at\": \"2024-12-01\",\n  \"end_at\": \"2025-12-01\"\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","orders","{{order_number}}"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"dfe0e860-140d-4283-878e-cc1962f987cb","name":"Updated","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-02\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"554654555\",\n        \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n        \"client_referral_code\": \"o5hXLuIG4Eeo\",\n        \"client_id\": 9,\n        \"status\": \"Pending\",\n        \"premium\": 201.88,\n        \"tax\": 33.5,\n        \"total\": 201.88,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2024-11-27T14:10:18.950000Z\",\n        \"ordered_at\": \"2024-11-27T14:10:18.808000Z\",\n        \"items\": [\n            {\n                \"id\": \"3d4d1798-f035-457a-8bcb-c85be56835d3\",\n                \"product_id\": 1037,\n                \"program_id\": 3,\n                \"product_uuid\": \"2fcc3f64-952b-45be-bc2a-46576aab0c60\",\n                \"product_name\": \"Australian Domestic\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 39,\n                \"product_minor_id\": 131,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-NOV8BCB-C85BE56835D3-1\",\n                \"start_at\": \"2024-12-21\",\n                \"end_at\": \"2025-01-11\",\n                \"deposit_at\": \"2024-11-27\",\n                \"effective_date\": \"2024-12-21\",\n                \"details\": [\n                    {\n                        \"id\": \"cf1e38d8-d0f2-43df-acd8-a703f7ae21b7\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"81899c92-eb59-49ff-8236-4c8bd8ca22db\",\n                        \"type\": \"affiliate_discount\",\n                        \"detail\": \"percentage\",\n                        \"value\": \"0\"\n                    },\n                    {\n                        \"id\": \"342408ff-6bdb-45eb-a3d8-c656fff6a436\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"10000\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"99e3a04e-85f5-4614-81de-b1ec860d5c6e\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 17.65,\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"670f25ae-7b9d-4486-92b7-1c251465143f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 109.2,\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"c960611b-dac5-4fd8-835e-e939188d8b3d\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-01\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"a734d9af-d37a-4af5-86df-a9869c2138e3\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-10\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"57dc767a-42f3-426d-b6fc-32ece7ad3e7a\",\n                        \"type\": \"level\",\n                        \"detail\": \"10000\",\n                        \"amount\": 10000,\n                        \"value\": \"5236\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"3c1c392d-0e44-4995-b7b1-c88256dc5e6b\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 2500000,\n                        \"value\": \"5611\",\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"56ec18a1-7826-461b-81a6-7f359dc95469\",\n                        \"type\": \"level\",\n                        \"detail\": \"500\",\n                        \"amount\": 500,\n                        \"value\": \"5237\",\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"0a0bb443-58e1-4a0e-b6a2-b85164451874\",\n                        \"type\": \"level\",\n                        \"detail\": \"10 days\",\n                        \"amount\": 10,\n                        \"value\": \"5252\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"694c024c-3f57-464e-974a-6d10f4f39370\",\n                        \"type\": \"level\",\n                        \"detail\": \"6000\",\n                        \"amount\": 6000,\n                        \"value\": \"5609\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"49e83913-3e2a-4e4b-b327-6d402298347f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Cancellation and Interruption Package\",\n                        \"amount\": 73.53,\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"add77389-e9ff-4182-ac5f-7c9a9c21fbcb\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 1.5,\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"4af7be49-6e94-414e-8327-9cfe7ea42b23\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 16.67\n                    },\n                    {\n                        \"id\": \"74cab8c3-29c4-4d17-a513-3933025c789b\",\n                        \"type\": \"included_breakdown_tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 5.05\n                    },\n                    {\n                        \"id\": \"976d67b7-cdef-4732-923e-70e30e7e2c71\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"gst\",\n                        \"amount\": 16.84\n                    },\n                    {\n                        \"id\": \"a8801a41-fdb7-4670-bc30-23d006bfd780\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_stamp_duty\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"e99016d9-10e8-4d00-be21-0dec83edb397\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_gst\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"28b46728-c863-4603-9ec1-1b3b9ae0e48f\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 201.88\n                    },\n                    {\n                        \"id\": \"042ced80-23ea-4cf8-b50f-97be7ed98cb3\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 201.88\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Test Name\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1990-01-05\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"_id\": \"6747284d855b6eb00302b472\",\n                    \"quote_id\": \"554654555\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-11-27 14:10:18\",\n                    \"applicant\": {\n                        \"first_name\": \"Test Name\",\n                        \"last_name\": \"Johnson\",\n                        \"email\": \"mnordin@battleface.com\",\n                        \"contact_number\": \"123123123\",\n                        \"address\": \"KING STREET, NEWTOWN\",\n                        \"city\": \"Sydney\",\n                        \"post_code\": \"2055\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"dob\": \"1990-01-05\",\n                        \"age_at_travel\": 0,\n                        \"ip_address\": \"172.19.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n                    \"schema_version\": 1,\n                    \"document_version\": 3,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-11-27 14:10:18\",\n                    \"premium\": 201.88,\n                    \"total\": 201.88,\n                    \"fees\": 0,\n                    \"tax\": 33.5,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"details\": [\n                        {\n                            \"type\": \"affiliate_discount\",\n                            \"detail\": \"percentage\",\n                            \"amount\": 0,\n                            \"id\": \"01836cb0-6c2d-4541-8d61-ffd9420fda49\",\n                            \"_id\": \"67473ad719ff9a45c30793b6\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"stamp_duty\",\n                            \"amount\": 16.67,\n                            \"id\": \"76585469-f3a1-436a-899b-e84c50c1629c\",\n                            \"_id\": \"67473ad719ff9a45c30793b7\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"gst\",\n                            \"amount\": 16.84,\n                            \"id\": \"59c1d534-ca23-4bd0-87bd-d317b4702ba3\",\n                            \"_id\": \"67473ad719ff9a45c30793b8\"\n                        },\n                        {\n                            \"type\": \"included_breakdown_tax\",\n                            \"detail\": \"witholding\",\n                            \"amount\": 5.05,\n                            \"id\": \"7e64ce32-08e9-4b05-a47b-9b1482485a48\",\n                            \"_id\": \"67473ad719ff9a45c30793b9\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_stamp_duty\",\n                            \"amount\": 0,\n                            \"id\": \"2a98af93-8572-4b09-856a-ed468400ca48\",\n                            \"_id\": \"67473ad719ff9a45c30793ba\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_gst\",\n                            \"amount\": 0,\n                            \"id\": \"98995771-44f3-443b-8c18-1cb00020d1fc\",\n                            \"_id\": \"67473ad719ff9a45c30793bb\"\n                        }\n                    ],\n                    \"client_id\": 9,\n                    \"client_referral_code\": \"o5hXLuIG4Eeo\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-11-27T15:29:28.145000Z\",\n                    \"created_at\": \"2024-11-27T14:10:21.000000Z\",\n                    \"meta\": null\n                },\n                \"meta\": null,\n                \"destinations\": [\n                    {\n                        \"country_code\": \"AU\",\n                        \"country_name\": \"Australia\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Test Name\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1990-01-05\",\n            \"age_at_travel\": 0,\n            \"email\": \"mnordin@battleface.com\",\n            \"contact_number\": \"123123123\",\n            \"address\": \"KING STREET, NEWTOWN\",\n            \"city\": \"Sydney\",\n            \"post_code\": \"2055\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.19.0.50\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"firstaffiliate@testing123456.com\"\n        },\n        \"details\": [\n            {\n                \"id\": \"01836cb0-6c2d-4541-8d61-ffd9420fda49\",\n                \"type\": \"affiliate_discount\",\n                \"detail\": \"percentage\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"76585469-f3a1-436a-899b-e84c50c1629c\",\n                \"type\": \"included_tax\",\n                \"detail\": \"stamp_duty\",\n                \"amount\": 16.67\n            },\n            {\n                \"id\": \"59c1d534-ca23-4bd0-87bd-d317b4702ba3\",\n                \"type\": \"included_tax\",\n                \"detail\": \"gst\",\n                \"amount\": 16.84\n            },\n            {\n                \"id\": \"7e64ce32-08e9-4b05-a47b-9b1482485a48\",\n                \"type\": \"included_breakdown_tax\",\n                \"detail\": \"witholding\",\n                \"amount\": 5.05\n            },\n            {\n                \"id\": \"2a98af93-8572-4b09-856a-ed468400ca48\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_stamp_duty\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"98995771-44f3-443b-8c18-1cb00020d1fc\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_gst\",\n                \"amount\": 0\n            }\n        ]\n    }\n}"},{"id":"438e45ee-2a4e-4675-90ad-ad2b726e425e","name":"Forbidden Field","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-11\",\n    \"currency_id\": \"USD\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The field following keys are not allowed: currency_id\",\n    \"error\": \"The field following keys are not allowed: currency_id\",\n    \"errors\": {\n        \"message\": \"The field following keys are not allowed: currency_id\",\n        \"error\": \"The field following keys are not allowed: currency_id\",\n        \"errors\": [],\n        \"meta\": {\n            \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"},{"id":"0d40c214-969d-4c4f-a09f-bf2bcf0a8239","name":"Update Applicant","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    // \"quote_id\": \"455656\",\n    \"start_at\": \"2024-12-21\",\n    \"end_at\": \"2025-01-10\"\n    // \"details\": [\n    //     {\n    //         \"type\": \"package\",\n    //         \"product_package_id\": \"base_package\"\n    //     },\n    //     {\n    //         \"type\": \"group\",\n    //         \"detail\": \"travelers\",\n    //         \"amount\": 180,\n    //         \"product_package_id\": \"base_package\"\n    //     },\n    //     {\n    //         \"type\": \"group\",\n    //         \"detail\": \"average_age\",\n    //         \"amount\": 40,\n    //         \"product_package_id\": \"base_package\"\n    //     }\n    // ],\n    ,\"applicants\": [\n        {\n            \"company_name\": \"Group of People LLC.\",\n            \"first_name\": \"Group\",\n            \"last_name\": \"Person\",\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"1110002222\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"00000\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"is_main\": true,\n            \"trip_cost\": \"5000\",\n            \"dob\":\"1995-01-01\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"554654555\",\n        \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n        \"client_referral_code\": \"o5hXLuIG4Eeo\",\n        \"client_id\": 8,\n        \"status\": \"Pending\",\n        \"premium\": 190.64,\n        \"tax\": 31.64,\n        \"total\": 190.64,\n        \"currency_id\": \"AUD\",\n        \"status_updated_at\": \"2024-11-27T14:10:18.950000Z\",\n        \"ordered_at\": \"2024-11-27T14:10:18.808000Z\",\n        \"items\": [\n            {\n                \"id\": \"3d4d1798-f035-457a-8bcb-c85be56835d3\",\n                \"product_id\": 1037,\n                \"program_id\": 3,\n                \"product_uuid\": \"2fcc3f64-952b-45be-bc2a-46576aab0c60\",\n                \"product_name\": \"Australian Domestic\",\n                \"sanction_search_id\": \"0\",\n                \"product_major_id\": 39,\n                \"product_minor_id\": 131,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-NOV8BCB-C85BE56835D3-1\",\n                \"start_at\": \"2024-12-21\",\n                \"end_at\": \"2025-01-10\",\n                \"deposit_at\": \"2024-11-27\",\n                \"effective_date\": \"2024-12-21\",\n                \"details\": [\n                    {\n                        \"id\": \"cf1e38d8-d0f2-43df-acd8-a703f7ae21b7\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"excess_fee\",\n                        \"amount\": 100\n                    },\n                    {\n                        \"id\": \"81899c92-eb59-49ff-8236-4c8bd8ca22db\",\n                        \"type\": \"affiliate_discount\",\n                        \"detail\": \"percentage\",\n                        \"value\": \"0\"\n                    },\n                    {\n                        \"id\": \"342408ff-6bdb-45eb-a3d8-c656fff6a436\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"level\",\n                        \"amount\": 0,\n                        \"value\": \"10000\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"c960611b-dac5-4fd8-835e-e939188d8b3d\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"start_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-01\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"a734d9af-d37a-4af5-86df-a9869c2138e3\",\n                        \"type\": \"level-condition\",\n                        \"detail\": \"end_date\",\n                        \"amount\": 0,\n                        \"value\": \"2025-02-10\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"57dc767a-42f3-426d-b6fc-32ece7ad3e7a\",\n                        \"type\": \"level\",\n                        \"detail\": \"10000\",\n                        \"amount\": 10000,\n                        \"value\": \"5236\",\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"3c1c392d-0e44-4995-b7b1-c88256dc5e6b\",\n                        \"type\": \"level\",\n                        \"detail\": \"2500000\",\n                        \"amount\": 2500000,\n                        \"value\": \"5611\",\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"56ec18a1-7826-461b-81a6-7f359dc95469\",\n                        \"type\": \"level\",\n                        \"detail\": \"500\",\n                        \"amount\": 500,\n                        \"value\": \"5237\",\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"0a0bb443-58e1-4a0e-b6a2-b85164451874\",\n                        \"type\": \"level\",\n                        \"detail\": \"10 days\",\n                        \"amount\": 10,\n                        \"value\": \"5252\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"694c024c-3f57-464e-974a-6d10f4f39370\",\n                        \"type\": \"level\",\n                        \"detail\": \"6000\",\n                        \"amount\": 6000,\n                        \"value\": \"5609\",\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"99e3a04e-85f5-4614-81de-b1ec860d5c6e\",\n                        \"type\": \"package\",\n                        \"detail\": \"Baggage Package\",\n                        \"amount\": 16.12,\n                        \"product_package_id\": 2284\n                    },\n                    {\n                        \"id\": \"670f25ae-7b9d-4486-92b7-1c251465143f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Rental Vehicle Damage Package\",\n                        \"amount\": 109.2,\n                        \"product_package_id\": 2285\n                    },\n                    {\n                        \"id\": \"49e83913-3e2a-4e4b-b327-6d402298347f\",\n                        \"type\": \"package\",\n                        \"detail\": \"Trip Cancellation and Interruption Package\",\n                        \"amount\": 63.82,\n                        \"product_package_id\": 2283\n                    },\n                    {\n                        \"id\": \"add77389-e9ff-4182-ac5f-7c9a9c21fbcb\",\n                        \"type\": \"package\",\n                        \"detail\": \"Personal Liability Package\",\n                        \"amount\": 1.5,\n                        \"product_package_id\": 2286\n                    },\n                    {\n                        \"id\": \"4af7be49-6e94-414e-8327-9cfe7ea42b23\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"stamp_duty\",\n                        \"amount\": 15.74\n                    },\n                    {\n                        \"id\": \"74cab8c3-29c4-4d17-a513-3933025c789b\",\n                        \"type\": \"included_breakdown_tax\",\n                        \"detail\": \"witholding\",\n                        \"amount\": 4.77\n                    },\n                    {\n                        \"id\": \"976d67b7-cdef-4732-923e-70e30e7e2c71\",\n                        \"type\": \"included_tax\",\n                        \"detail\": \"gst\",\n                        \"amount\": 15.9\n                    },\n                    {\n                        \"id\": \"a8801a41-fdb7-4670-bc30-23d006bfd780\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_stamp_duty\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"e99016d9-10e8-4d00-be21-0dec83edb397\",\n                        \"type\": \"included_sub_tax\",\n                        \"detail\": \"discount_gst\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"28b46728-c863-4603-9ec1-1b3b9ae0e48f\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 190.64\n                    },\n                    {\n                        \"id\": \"042ced80-23ea-4cf8-b50f-97be7ed98cb3\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 190.64\n                    }\n                ],\n                \"insured\": {\n                    \"company_name\": \"Group of People LLC.\",\n                    \"first_name\": \"Group\",\n                    \"last_name\": \"Person\",\n                    \"dob\": \"1995-01-01\"\n                },\n                \"is_main\": true,\n                \"order\": {\n                    \"_id\": \"6747284d855b6eb00302b472\",\n                    \"quote_id\": \"554654555\",\n                    \"currency_id\": \"AUD\",\n                    \"site_id\": 1,\n                    \"ordered_at\": \"2024-11-27 14:10:18\",\n                    \"applicant\": {\n                        \"first_name\": \"Group\",\n                        \"last_name\": \"Person\",\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"1110002222\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"00000\",\n                        \"country_code\": \"AU\",\n                        \"state_code\": \"NSW\",\n                        \"dob\": \"1995-01-01\",\n                        \"age_at_travel\": 0,\n                        \"ip_address\": \"172.19.0.50\"\n                    },\n                    \"flags\": {\n                        \"send_policy_emails\": true,\n                        \"generate_policy_document\": true,\n                        \"trigger_sanction_search\": true\n                    },\n                    \"order_number\": \"1-NOVB3A3-5BC8C9A7226F\",\n                    \"schema_version\": 1,\n                    \"document_version\": 6,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2024-11-27 14:10:18\",\n                    \"premium\": 190.64,\n                    \"total\": 190.64,\n                    \"fees\": 0,\n                    \"tax\": 31.64,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 8,\n                    \"client_referral_code\": \"o5hXLuIG4Eeo\",\n                    \"referral_code\": null,\n                    \"updated_at\": \"2024-11-27T15:31:46.933000Z\",\n                    \"created_at\": \"2024-11-27T14:10:21.000000Z\",\n                    \"details\": [\n                        {\n                            \"type\": \"affiliate_discount\",\n                            \"detail\": \"percentage\",\n                            \"amount\": 0,\n                            \"id\": \"24935348-c9f3-4914-afd3-866275f568ab\",\n                            \"_id\": \"67473c43745b53346c08caee\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"stamp_duty\",\n                            \"amount\": 15.74,\n                            \"id\": \"f862af40-d514-423a-9d1f-dd0d5da105cc\",\n                            \"_id\": \"67473c43745b53346c08caef\"\n                        },\n                        {\n                            \"type\": \"included_tax\",\n                            \"detail\": \"gst\",\n                            \"amount\": 15.9,\n                            \"id\": \"73e89924-3bda-4df2-9bf6-9ad28e99a2a2\",\n                            \"_id\": \"67473c43745b53346c08caf0\"\n                        },\n                        {\n                            \"type\": \"included_breakdown_tax\",\n                            \"detail\": \"witholding\",\n                            \"amount\": 4.77,\n                            \"id\": \"ad31e6aa-6fab-441f-b9fd-9e1035dff874\",\n                            \"_id\": \"67473c43745b53346c08caf1\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_stamp_duty\",\n                            \"amount\": 0,\n                            \"id\": \"9f878d4a-ffb9-4a0d-b49e-ed6820c32a97\",\n                            \"_id\": \"67473c43745b53346c08caf2\"\n                        },\n                        {\n                            \"type\": \"included_sub_tax\",\n                            \"detail\": \"discount_gst\",\n                            \"amount\": 0,\n                            \"id\": \"579b1574-eb80-4c46-af13-f70be46bbe31\",\n                            \"_id\": \"67473c43745b53346c08caf3\"\n                        }\n                    ]\n                },\n                \"meta\": null,\n                \"destinations\": [\n                    {\n                        \"country_code\": \"AU\",\n                        \"country_name\": \"Australia\"\n                    }\n                ]\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Group\",\n            \"last_name\": \"Person\",\n            \"dob\": \"1995-01-01\",\n            \"age_at_travel\": 0,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"1110002222\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"00000\",\n            \"country_code\": \"AU\",\n            \"state_code\": \"NSW\",\n            \"ip_address\": \"172.19.0.50\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"firstaffiliate@testing123456.com\"\n        },\n        \"details\": [\n            {\n                \"id\": \"24935348-c9f3-4914-afd3-866275f568ab\",\n                \"type\": \"affiliate_discount\",\n                \"detail\": \"percentage\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"f862af40-d514-423a-9d1f-dd0d5da105cc\",\n                \"type\": \"included_tax\",\n                \"detail\": \"stamp_duty\",\n                \"amount\": 15.74\n            },\n            {\n                \"id\": \"73e89924-3bda-4df2-9bf6-9ad28e99a2a2\",\n                \"type\": \"included_tax\",\n                \"detail\": \"gst\",\n                \"amount\": 15.9\n            },\n            {\n                \"id\": \"ad31e6aa-6fab-441f-b9fd-9e1035dff874\",\n                \"type\": \"included_breakdown_tax\",\n                \"detail\": \"witholding\",\n                \"amount\": 4.77\n            },\n            {\n                \"id\": \"9f878d4a-ffb9-4a0d-b49e-ed6820c32a97\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_stamp_duty\",\n                \"amount\": 0\n            },\n            {\n                \"id\": \"579b1574-eb80-4c46-af13-f70be46bbe31\",\n                \"type\": \"included_sub_tax\",\n                \"detail\": \"discount_gst\",\n                \"amount\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"e712c397-d203-4446-b998-0907648ffa72"}],"id":"40eae903-7e9a-4528-992d-004d95dfcdcb","_postman_id":"40eae903-7e9a-4528-992d-004d95dfcdcb","description":"","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"File","item":[{"name":"Download Policy","id":"1d4af3bd-0f35-4151-9d85-8021c862949f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/policies/{{policy_number}}/download","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"9f950490-07ee-415f-8a70-52c62bf9063b","id":"9f950490-07ee-415f-8a70-52c62bf9063b","name":"File","type":"folder"}},"urlObject":{"path":["api","partner","policies","{{policy_number}}","download"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d4af3bd-0f35-4151-9d85-8021c862949f"},{"name":"Partner Order Policy Files","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Policy Files Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"e2cef132-7a1d-4440-a4b5-e541e20869f9"}}],"id":"1defd159-ff65-464b-8e28-2e229aa684ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/policies/{{policy_number}}/files","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"9f950490-07ee-415f-8a70-52c62bf9063b","id":"9f950490-07ee-415f-8a70-52c62bf9063b","name":"File","type":"folder"}},"urlObject":{"path":["api","partner","orders","{{order_number}}","policies","{{policy_number}}","files"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"ffae2f04-d2e1-4c6c-99b0-5b60fc6d2a40","name":"Order Policy Files","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/policies/{{policy_number}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.21.1"},{"key":"Date","value":"Thu, 09 Jun 2022 13:21:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.1.4"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"for\": \"policy\",\n            \"name\": \"Policy Document\",\n            \"url\": \"http://bf-file-ms.lcl/api/policies/policy-6-JUN12322-12-6b78156d-a05f-4a01-b062-79ab0cf6c958/download\"\n        },\n        {\n            \"id\": 1,\n            \"for\": \"confirmation_of_coverage\",\n            \"name\": \"Confirmation Of Coverage Document\",\n            \"url\": \"http://bf-file-ms.lcl/api/policies/confirmation_of_coverage-6-JUN12322-12-f9ec8caa-09ad-4edd-a004-48c0a3c6e58f/download\"\n        }\n    ]\n}"}],"_postman_id":"1defd159-ff65-464b-8e28-2e229aa684ca"}],"id":"9f950490-07ee-415f-8a70-52c62bf9063b","description":"<p>Once an order is approved, a document package (\"fulfillment documents\"), including the policy document, must be emailed to the Customer. These can be sent by battleface's system or by the Partner system.</p>\n<p>If you would like to manage sending fulfillment emails, the document package for a policy can be retrieved via API. You have a few options to do this:</p>\n<ul>\n<li><p>Download the policy files directly: <a href=\"https://developers.battleface.com/#1d4af3bd-0f35-4151-9d85-8021c862949f\"><i>Download Policy</i></a></p>\n</li>\n<li><p>Retrieve links for downloading the policy files: <a href=\"https://developers.battleface.com/#1defd159-ff65-464b-8e28-2e229aa684ca\"><i>Partner Order Policy Files</i></a></p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"69e85981-7097-4213-baad-f8ed8a3177f0"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"8113a3a5-ad0e-4f2b-9897-dc388017e1b1"}}],"_postman_id":"9f950490-07ee-415f-8a70-52c62bf9063b"},{"name":"Claims","item":[{"name":"Status","item":[{"name":"By Email","id":"06ebe91b-dbc7-49b9-804c-150427d38d68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"tester@battleface.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/status","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"9f538e93-952d-439e-8876-335ce6739e97","name":"By Email","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"tester@battleface.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"claim_number\": 11556,\r\n        \"external_ref\": \"abcdef123456\",\r\n        \"id\": 3441,\r\n        \"policy_number\": \"INF2021257\",\r\n        \"required_docs\": [],\r\n        \"status\": \"Closed - Claim Lacks Supporting Documents\"\r\n    }\r\n]"}],"_postman_id":"06ebe91b-dbc7-49b9-804c-150427d38d68"},{"name":"By Claim Number","id":"4102a8dd-d480-4b2b-be39-476ef8e410e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"claim_number\": \"53170\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/status","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"9c95cb50-9f09-4ec4-bad5-34abab9ff18e","name":"By Claim Number","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"claim_number\": \"11556\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"claim_number\": 11556,\r\n        \"external_ref\": \"abcdef123456\",\r\n        \"id\": 3441,\r\n        \"policy_number\": \"INF2021257\",\r\n        \"required_docs\": [],\r\n        \"status\": \"Closed - Claim Lacks Supporting Documents\"\r\n    }\r\n]"}],"_postman_id":"4102a8dd-d480-4b2b-be39-476ef8e410e1"},{"name":"By Policy Number","id":"837e63d4-e3ce-4758-9bcb-41d7226ed734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"policy_number\": \"ABC-123456\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim-fnol/status","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"da55e831-d47c-4985-a4d9-f12c9996bcab","name":"By Claim Number","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"policy_number\": \"INF2021257\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"claim_number\": 11556,\r\n        \"external_ref\": \"abcdef123456\",\r\n        \"id\": 3441,\r\n        \"policy_number\": \"INF2021257\",\r\n        \"required_docs\": [],\r\n        \"status\": \"Closed - Claim Lacks Supporting Documents\"\r\n    }\r\n]"}],"_postman_id":"837e63d4-e3ce-4758-9bcb-41d7226ed734"}],"id":"f8756b8b-e4e4-44ad-8cda-bb455af41ffd","description":"<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"id\": 3293,\n        \"claim_number\": 11408,\n        \"policy_number\": \"\",\n        \"external_ref\": \"\",\n        \"status\": \"New\",\n        \"required_docs\": []\n    },\n    {\n        \"id\": 3292,\n        \"claim_number\": 11407,\n        \"policy_number\": \"\",\n        \"external_ref\": \"\",\n        \"status\": \"Action Required\",\n        \"required_docs\": [\n            {\n                \"id\": 3198,\n                \"name\": \"Police Report\", \n                \"notes\": \"Please provide a police report.\"\n            }\n        ]\n    }\n]\n\n</code></pre>\n<p><strong>Possible Statuses:</strong></p>\n<ul>\n<li>New</li>\n<li>Under Review</li>\n<li>Action Required</li>\n<li>Under Review - Partially Paid</li>\n<li>Closed - Paid</li>\n<li>Closed - Claim Not Approved</li>\n<li>Closed - Claim Lacks Supporting Documents</li>\n</ul>\n","_postman_id":"f8756b8b-e4e4-44ad-8cda-bb455af41ffd","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Additional Documents","item":[{"name":"By Client Id","id":"d5f4ae34-9f10-4c47-978d-382b439c842e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"claim_id\": \"11408\",\n    \"additional_docs\": [\n        {\n            \"filename\": \"receipt.png\",\n            \"id\": \"abc-974123456-xyz\",\n            \"label\": \"Medical report\",\n            \"doc_id\": \"342\"\n        },\n        {\n            \"filename\": \"police-report.pdf\",\n            \"id\": \"edg-97416232-jkl\",\n            \"label\": \"Police report\",\n            \"doc_id\": \"4536\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/additional-docs","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filename</td>\n<td>the filename, as returned by the File Upload endpoint</td>\n</tr>\n<tr>\n<td>id</td>\n<td>file id, as returned by the File Upload endpoint</td>\n</tr>\n<tr>\n<td>label</td>\n<td>label of the file, as returned by the Status endpoint</td>\n</tr>\n<tr>\n<td>doc_id</td>\n<td>document id, as returned by the Status endpoint</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","additional-docs"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"f05b093c-4b5e-4262-8d81-ac6e5e44b8b3","name":"By Client Id","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"claim_id\": \"11408\",\n    \"additional_docs\": [\n        {\n            \"filename\": \"receipt.png\",\n            \"id\": \"abc-974123456-xyz\",\n            \"label\": \"Medical report\",\n            \"doc_id\": \"342\"\n        },\n        {\n            \"filename\": \"police-report.pdf\",\n            \"id\": \"edg-97416232-jkl\",\n            \"label\": \"Police report\",\n            \"doc_id\": \"4536\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/additional-docs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"d5f4ae34-9f10-4c47-978d-382b439c842e"}],"id":"68069e57-bfbf-4a3b-b8bc-548dd121ccd0","description":"<h1 id=\"updating-a-claim-with-additional-documents\">Updating a claim with additional documents</h1>\n<p><strong>How it works:</strong></p>\n<ol>\n<li>Hit the Status endpoint to get the additional required documents, their labels and ids.</li>\n<li>Upload the files to the File Upload endpoint to get the filename and id.</li>\n<li>Attach the additional documents to the claim by hitting the Additional Documents</li>\n</ol>\n","_postman_id":"68069e57-bfbf-4a3b-b8bc-548dd121ccd0","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Options","item":[{"name":"Countries","id":"3292533b-1296-43e7-b7cf-e4831728af3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/v1/claim_fnol/countries?product_id=12","description":"<p>A list of countries.</p>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"name\": \"United States\",\n        \"value\": \"US\"\n    }\n]\n\n</code></pre>\n<p>Note: This is typically returned as a remoteOptionUrl to populate a select input in the Questions endpoint.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","countries"],"host":["{{host_gateway}}"],"query":[{"description":{"content":"<p>Optional. Limit the result to countries the product is offered.</p>\n","type":"text/plain"},"key":"product_id","value":"12"}],"variable":[]}},"response":[{"id":"35bbb4ba-153a-42f5-83b4-f7c2d7244bb3","name":"Countries","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{host_gateway}}/api/v1/claim_fnol/countries?product_id=12","host":["{{host_gateway}}"],"path":["api","v1","claim_fnol","countries"],"query":[{"key":"product_id","value":"12","description":"Optional. Limit the result to countries the product is offered."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"United States\",\n        \"value\": \"US\"\n    }\n]"}],"_postman_id":"3292533b-1296-43e7-b7cf-e4831728af3e"},{"name":"States","id":"69dd054d-6038-4024-a6a5-e2c5766dadf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/v1/claim_fnol/countries/{{country_code}}/states","description":"<p>A list of states (or divisions) for a given country.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>URL Param</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country_id</td>\n<td>ISO 3166-1 alpha-2 (US, UK, CA)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"name\": \"Alabama\",\n        \"value\": \"AL\"\n    },\n    {\n        \"name\": \"Alaska\",\n        \"value\": \"AK\"\n    },\n    ...\n]\n\n</code></pre>\n<p>Note: This is typically returned as a remoteOptionUrl to populate a select input in the Questions endpoint.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","countries","{{country_code}}","states"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"38bcefba-fd31-407e-bcef-db92b6c98812","name":"States","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/v1/claim_fnol/countries/{{country_code}}/states"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"name\": \"Alaska\",\r\n        \"value\": \"AK\"\r\n    },\r\n    {\r\n        \"name\": \"Alabama\",\r\n        \"value\": \"AL\"\r\n    },\r\n    {\r\n        \"name\": \"Arkansas\",\r\n        \"value\": \"AR\"\r\n    },\r\n    {\r\n        \"name\": \"Arizona\",\r\n        \"value\": \"AZ\"\r\n    },\r\n    {\r\n        \"name\": \"California\",\r\n        \"value\": \"CA\"\r\n    },\r\n    {\r\n        \"name\": \"Colorado\",\r\n        \"value\": \"CO\"\r\n    },\r\n    {\r\n        \"name\": \"Connecticut\",\r\n        \"value\": \"CT\"\r\n    },\r\n    {\r\n        \"name\": \"District of Columbia\",\r\n        \"value\": \"DC\"\r\n    },\r\n    {\r\n        \"name\": \"Delaware\",\r\n        \"value\": \"DE\"\r\n    },\r\n    {\r\n        \"name\": \"Florida\",\r\n        \"value\": \"FL\"\r\n    },\r\n    {\r\n        \"name\": \"Georgia\",\r\n        \"value\": \"GA\"\r\n    },\r\n    {\r\n        \"name\": \"Hawaii\",\r\n        \"value\": \"HI\"\r\n    },\r\n    {\r\n        \"name\": \"Iowa\",\r\n        \"value\": \"IA\"\r\n    },\r\n    {\r\n        \"name\": \"Idaho\",\r\n        \"value\": \"ID\"\r\n    },\r\n    {\r\n        \"name\": \"Illinois\",\r\n        \"value\": \"IL\"\r\n    },\r\n    {\r\n        \"name\": \"Indiana\",\r\n        \"value\": \"IN\"\r\n    },\r\n    {\r\n        \"name\": \"Kansas\",\r\n        \"value\": \"KS\"\r\n    },\r\n    {\r\n        \"name\": \"Kentucky\",\r\n        \"value\": \"KY\"\r\n    },\r\n    {\r\n        \"name\": \"Louisiana\",\r\n        \"value\": \"LA\"\r\n    },\r\n    {\r\n        \"name\": \"Massachusetts\",\r\n        \"value\": \"MA\"\r\n    },\r\n    {\r\n        \"name\": \"Maryland\",\r\n        \"value\": \"MD\"\r\n    },\r\n    {\r\n        \"name\": \"Maine\",\r\n        \"value\": \"ME\"\r\n    },\r\n    {\r\n        \"name\": \"Michigan\",\r\n        \"value\": \"MI\"\r\n    },\r\n    {\r\n        \"name\": \"Minnesota\",\r\n        \"value\": \"MN\"\r\n    },\r\n    {\r\n        \"name\": \"Missouri\",\r\n        \"value\": \"MO\"\r\n    },\r\n    {\r\n        \"name\": \"Mississippi\",\r\n        \"value\": \"MS\"\r\n    },\r\n    {\r\n        \"name\": \"Montana\",\r\n        \"value\": \"MT\"\r\n    },\r\n    {\r\n        \"name\": \"North Carolina\",\r\n        \"value\": \"NC\"\r\n    },\r\n    {\r\n        \"name\": \"North Dakota\",\r\n        \"value\": \"ND\"\r\n    },\r\n    {\r\n        \"name\": \"Nebraska\",\r\n        \"value\": \"NE\"\r\n    },\r\n    {\r\n        \"name\": \"New Hampshire\",\r\n        \"value\": \"NH\"\r\n    },\r\n    {\r\n        \"name\": \"New Jersey\",\r\n        \"value\": \"NJ\"\r\n    },\r\n    {\r\n        \"name\": \"New Mexico\",\r\n        \"value\": \"NM\"\r\n    },\r\n    {\r\n        \"name\": \"Nevada\",\r\n        \"value\": \"NV\"\r\n    },\r\n    {\r\n        \"name\": \"New York\",\r\n        \"value\": \"NY\"\r\n    },\r\n    {\r\n        \"name\": \"Ohio\",\r\n        \"value\": \"OH\"\r\n    },\r\n    {\r\n        \"name\": \"Oklahoma\",\r\n        \"value\": \"OK\"\r\n    },\r\n    {\r\n        \"name\": \"Oregon\",\r\n        \"value\": \"OR\"\r\n    },\r\n    {\r\n        \"name\": \"Pennsylvania\",\r\n        \"value\": \"PA\"\r\n    },\r\n    {\r\n        \"name\": \"Rhode Island\",\r\n        \"value\": \"RI\"\r\n    },\r\n    {\r\n        \"name\": \"South Carolina\",\r\n        \"value\": \"SC\"\r\n    },\r\n    {\r\n        \"name\": \"South Dakota\",\r\n        \"value\": \"SD\"\r\n    },\r\n    {\r\n        \"name\": \"Tennessee\",\r\n        \"value\": \"TN\"\r\n    },\r\n    {\r\n        \"name\": \"Texas\",\r\n        \"value\": \"TX\"\r\n    },\r\n    {\r\n        \"name\": \"Utah\",\r\n        \"value\": \"UT\"\r\n    },\r\n    {\r\n        \"name\": \"Virginia\",\r\n        \"value\": \"VA\"\r\n    },\r\n    {\r\n        \"name\": \"Vermont\",\r\n        \"value\": \"VT\"\r\n    },\r\n    {\r\n        \"name\": \"Washington\",\r\n        \"value\": \"WA\"\r\n    },\r\n    {\r\n        \"name\": \"Wisconsin\",\r\n        \"value\": \"WI\"\r\n    },\r\n    {\r\n        \"name\": \"West Virginia\",\r\n        \"value\": \"WV\"\r\n    },\r\n    {\r\n        \"name\": \"Wyoming\",\r\n        \"value\": \"WY\"\r\n    }\r\n]"}],"_postman_id":"69dd054d-6038-4024-a6a5-e2c5766dadf2"},{"name":"Policy Benefits","id":"bc145f93-3dbe-4be8-a63b-3f98c6222c55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/v1/claim_fnol/policy/{policy_id}/benefits","description":"<p>A list of coverages based on benefits purchased for a given policy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>URL Param</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>policy_id</td>\n<td>ID of the policy</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: This is typically returned as a remoteOptionUrl to populate a select input in the Questions endpoint. This selection typically triggers the population of the Cover Causes.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","policy","{policy_id}","benefits"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"cd25eb5e-a3d3-4c3e-9b82-666117da5a76","name":"Policy Benefits","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/v1/claim_fnol/policy/{policy_id}/benefits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"name\": \"Cancel For Any Reason\",\r\n        \"value\": \"cancel_for_any_reason\"\r\n    }\r\n]"}],"_postman_id":"bc145f93-3dbe-4be8-a63b-3f98c6222c55"},{"name":"Cover Causes","id":"7d403563-5561-4a44-9308-eab5c894b703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/v1/claim_fnol/cover-causes?claim_type=adad","description":"<p>A list of coverage causes for a provided claim type.</p>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"value\": \"Death\",\n        \"name\": \"Death\"\n    },\n    {\n        \"value\": \"Disappearance\",\n        \"name\": \"Disappearance\"\n    },\n    ...\n]\n\n</code></pre>\n<p>Note: This is typically returned as a remoteOptionUrl to populate a select input in the Questions endpoint, but is partially populated by user selection of a claim type.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","cover-causes"],"host":["{{host_gateway}}"],"query":[{"description":{"content":"<p>The claim type as returned by the Policy Benefits endpoint.</p>\n","type":"text/plain"},"key":"claim_type","value":"adad"}],"variable":[]}},"response":[{"id":"424c5e6d-8510-4bcc-a65e-2cd009032ad7","name":"Cover Causes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{host_gateway}}/api/v1/claim_fnol/cover-causes?claim_type=adad","host":["{{host_gateway}}"],"path":["api","v1","claim_fnol","cover-causes"],"query":[{"key":"claim_type","value":"adad","description":"The claim type as returned by the Policy Benefits endpoint.\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Death\",\n        \"value\": \"Death\"\n    },\n    {\n        \"name\": \"Disappearance\",\n        \"value\": \"Disappearance\"\n    },\n    {\n        \"name\": \"Exposure\",\n        \"value\": \"Exposure\"\n    },\n    {\n        \"name\": \"Loss of limb\",\n        \"value\": \"Loss of limb\"\n    },\n    {\n        \"name\": \"Loss of sight\",\n        \"value\": \"Loss of sight\"\n    },\n    {\n        \"name\": \"Permanent total disablement\",\n        \"value\": \"Perma tot disable\"\n    }\n]"}],"_postman_id":"7d403563-5561-4a44-9308-eab5c894b703"}],"id":"63ea2546-1d1f-4b35-adb7-94091a944db0","_postman_id":"63ea2546-1d1f-4b35-adb7-94091a944db0","description":"","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Policy Search","event":[{"listen":"prerequest","script":{"id":"e5dfbe49-84e2-4ce1-83ba-8d1c4cb65c33","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"a5f87465-3b4b-44b3-ba8a-7d3973fc94af","exec":["pm.test(\"Policy Search Request Status code is 200\", function () {","    pm.response.to.have.status(200);","","    // set environment variables from payload","    const authToken = pm.response.headers.get('x-amzn-Remapped-Authorization').replace('Bearer ', '');","    postman.setEnvironmentVariable(\"claim_api_token\", atob(authToken));","});"],"type":"text/javascript"}}],"id":"49b1bbae-0d4a-46b7-a772-2d5e13a35bce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host_gateway}}/api/v1/claim-fnol/policy-search?email=&postalCode=&policyNumber&dob","description":"<p>Optional Search for a policy and receive a JWT token to authorize further requests.</p>\n<p><strong>Either combination is required:</strong></p>\n<p><code>email</code> and <code>postalCode</code></p>\n<p>or</p>\n<p><code>policyNumber</code> and <code>dob</code></p>\n","urlObject":{"path":["api","v1","claim-fnol","policy-search"],"host":["{{host_gateway}}"],"query":[{"description":{"content":"<p>Email of claim holder</p>\n","type":"text/plain"},"key":"email","value":""},{"description":{"content":"<p>Postal code of claim holder</p>\n","type":"text/plain"},"key":"postalCode","value":""},{"description":{"content":"<p>Policy Number</p>\n","type":"text/plain"},"key":"policyNumber","value":null},{"description":{"content":"<p>Date of Birth of claim holder</p>\n","type":"text/plain"},"key":"dob","value":null}],"variable":[]}},"response":[{"id":"c3d8b3be-cb89-417e-8260-ac69cfcfb5a7","name":"Policy Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{host_gateway}}/api/v1/claim_fnol/policy-search?email=&postalCode=&policyNumber&dob&displayPolicyNumber ","host":["{{host_gateway}}"],"path":["api","v1","claim_fnol","policy-search"],"query":[{"key":"email","value":"","description":"Email of claim holder"},{"key":"postalCode","value":"","description":"Postal code of claim holder"},{"key":"policyNumber","value":null,"description":"Policy Number"},{"key":"dob","value":null,"description":"Date of Birth of claim holder"},{"key":"displayPolicyNumber ","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF XPL0223230001\",\n            \"startDate\": \"2023-03-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF XPL0223230002\",\n            \"startDate\": \"2023-03-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF XPL0224230001\",\n            \"startDate\": \"2023-03-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF XPL0306230003\",\n            \"startDate\": \"2023-03-15\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF XPL0306230004\",\n            \"startDate\": \"2023-03-15\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF XPL0306230006\",\n            \"startDate\": \"2023-03-15\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF XPL0306230007\",\n            \"startDate\": \"2023-03-15\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"RITI-BF1124210001\",\n            \"startDate\": \"2021-11-25\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"TPO\",\n            \"policyNumber\": \"RITI-BF1124210002\",\n            \"startDate\": \"2021-11-25\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"TPT\",\n            \"policyNumber\": \"RITI-BF1124210003\",\n            \"startDate\": \"2021-11-25\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"RITI-BF1220210002\",\n            \"startDate\": \"2022-01-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"RITI-BF0113220005\",\n            \"startDate\": \"2022-01-15\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"RITI-BF0214220007\",\n            \"startDate\": \"2022-03-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"RITI-BF0307220001\",\n            \"startDate\": \"2022-04-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"KMP\",\n            \"policyNumber\": \"RITI-BF0307220002\",\n            \"startDate\": \"2022-04-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"RITI-BF0322220001\",\n            \"startDate\": \"2022-03-26\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"RITI-BF0322220002\",\n            \"startDate\": \"2022-03-26\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF DCV0811230073\",\n            \"startDate\": \"2023-08-24\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF DCV1204230082\",\n            \"startDate\": \"2024-01-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF DCV1204230083\",\n            \"startDate\": \"2024-01-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"KMP\",\n            \"policyNumber\": \"BFBF DCV1204230084\",\n            \"startDate\": \"2024-01-01\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF DCV1205230014\",\n            \"startDate\": \"2023-12-31\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF DCV1205230015\",\n            \"startDate\": \"2023-12-29\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"KMP\",\n            \"policyNumber\": \"BFBF DCV1205230016\",\n            \"startDate\": \"2023-12-29\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFBF DCV1205230019\",\n            \"startDate\": \"2023-12-31\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"JMP\",\n            \"policyNumber\": \"BFBF DCV1205230020\",\n            \"startDate\": \"2023-12-31\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"JG\",\n            \"policyNumber\": \"BFBF DCV1205230021\",\n            \"startDate\": \"2023-12-31\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PTP\",\n            \"policyNumber\": \"17-OC19823-86232\",\n            \"startDate\": \"2021-10-20\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFTM TRV0731230017\",\n            \"startDate\": \"2023-08-23\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFTM TRV0731230018\",\n            \"startDate\": \"2023-08-15\"\n        },\n        {\n            \"claimsHandler\": \"spinnaker\",\n            \"initials\": \"PJP\",\n            \"policyNumber\": \"BFTM TRV0116240004\",\n            \"startDate\": \"2024-01-24\"\n        }\n    ],\n    \"meta\": [],\n    \"processed\": false\n}"}],"_postman_id":"49b1bbae-0d4a-46b7-a772-2d5e13a35bce"},{"name":"Questions","id":"74360925-1d6d-48d2-bf11-ec2bba66bf3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/v1/claim-fnol/questions?policy_number=17-OC20912-86198","description":"<p>A schema of form fields for the questions required to complete a claim form for that particular policy. Populated with everything required to render a form, including default values and validation rules.</p>\n<p>The expected resulting request payload can be derived from this schema.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","questions"],"host":["{{host_gateway}}"],"query":[{"key":"policy_number","value":"17-OC20912-86198"}],"variable":[]}},"response":[{"id":"18525f93-3684-47e3-a33e-205f96b600c2","name":"Questions","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{host_gateway}}/api/v1/claim_fnol/questions?policy_number=17-OC20912-86198","host":["{{host_gateway}}"],"path":["api","v1","claim_fnol","questions"],"query":[{"key":"policy_number","value":"17-OC20912-86198","description":"The number of the policy requesting the claim form."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"displayType\": \"part\",\r\n    \"inputs\": [\r\n        {\r\n            \"actions\": [\r\n                \"next\"\r\n            ],\r\n            \"heading\": \"Personal information\",\r\n            \"inputs\": [\r\n                {\r\n                    \"default\": \"BFBF DCV0129240001\",\r\n                    \"label\": \"Policy Number\",\r\n                    \"name\": \"policy-num\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"Text is required\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"text\"\r\n                },\r\n                {\r\n                    \"inputs\": [\r\n                        {\r\n                            \"default\": \"CO_2\",\r\n                            \"label\": \"First Name\",\r\n                            \"name\": \"first\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"First Name is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"default\": \"CO_2\",\r\n                            \"label\": \"Last Name\",\r\n                            \"name\": \"last\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Last Name is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"name\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"default\": \"testing@battleface.com\",\r\n                    \"displayType\": \"email\",\r\n                    \"label\": \"Email\",\r\n                    \"name\": \"email\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"Email is required\",\r\n                            \"name\": \"required\"\r\n                        },\r\n                        {\r\n                            \"errMsg\": \"Email must be a valid email\",\r\n                            \"name\": \"email\"\r\n                        }\r\n                    ],\r\n                    \"subtext\": \"The email address used to purchase the policy\",\r\n                    \"type\": \"text\"\r\n                },\r\n                {\r\n                    \"displayType\": \"phone\",\r\n                    \"label\": \"Contact number\",\r\n                    \"name\": \"phone-number\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"Contact number is required\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"text\"\r\n                },\r\n                {\r\n                    \"inputs\": [\r\n                        {\r\n                            \"default\": \"US\",\r\n                            \"displayType\": \"select\",\r\n                            \"label\": \"Country\",\r\n                            \"name\": \"country\",\r\n                            \"optionsUrl\": \"http://cxu-test.battleface.com/countries?product_id=12\",\r\n                            \"optionsUrlMethod\": \"GET\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Country is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"default\": \"45 E Lincoln Street\",\r\n                            \"label\": \"Address\",\r\n                            \"name\": \"line-1\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Address is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Address Line 2\",\r\n                            \"name\": \"line-2\",\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"default\": \"cityville\",\r\n                            \"label\": \"City\",\r\n                            \"name\": \"city\",\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"default\": \"CO\",\r\n                            \"displayType\": \"select\",\r\n                            \"label\": \"State / Province / Region\",\r\n                            \"name\": \"state\",\r\n                            \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                            \"optionsUrlMethod\": \"GET\",\r\n                            \"optionsUrlParams\": [\r\n                                {\r\n                                    \"param\": \"country_code\",\r\n                                    \"target\": \"personal.address.country\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"State is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"default\": \"43022\",\r\n                            \"label\": \"ZIP / Postal Code\",\r\n                            \"name\": \"postal-code\",\r\n                            \"type\": \"text\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"address\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"displayDirection\": \"row\",\r\n                    \"displayType\": \"radio\",\r\n                    \"label\": \"Are you filing this claim on behalf of someone?\",\r\n                    \"name\": \"on-behalf-of\",\r\n                    \"options\": [\r\n                        {\r\n                            \"name\": \"Yes\",\r\n                            \"value\": \"Yes\"\r\n                        },\r\n                        {\r\n                            \"name\": \"No\",\r\n                            \"value\": \"No\"\r\n                        }\r\n                    ],\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must make a selection.\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"select\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"and\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"Yes\"\r\n                                    },\r\n                                    \"target\": \"personal.on-behalf-of\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"First\",\r\n                            \"name\": \"first-name\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Claimant first name is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Last\",\r\n                            \"name\": \"last-name\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Claimant last name is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        }\r\n                    ],\r\n                    \"label\": \"Claimant name\",\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"claimant-info\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"displayType\": \"select\",\r\n                    \"label\": \"Claim Type\",\r\n                    \"name\": \"claim-type\",\r\n                    \"optionsUrl\": \"http://cxu-test.battleface.com/policy/BFBF DCV0129240001/benefits?carrier=spinnaker\",\r\n                    \"optionsUrlMethod\": \"GET\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must make a selection.\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"select\"\r\n                },\r\n                {\r\n                    \"displayType\": \"select\",\r\n                    \"label\": \"Cause\",\r\n                    \"name\": \"coverage-cause\",\r\n                    \"optionsUrl\": \"{claimApi}/cover-causes?claim_type={claim_type}\",\r\n                    \"optionsUrlMethod\": \"GET\",\r\n                    \"optionsUrlParams\": [\r\n                        {\r\n                            \"param\": \"claim_type\",\r\n                            \"target\": \"personal.claim-type\"\r\n                        }\r\n                    ],\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"Cause is required\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"select\"\r\n                }\r\n            ],\r\n            \"labelAbbr\": \"Personal info\",\r\n            \"layout\": \"inline\",\r\n            \"name\": \"personal\",\r\n            \"type\": \"group\"\r\n        },\r\n        {\r\n            \"actions\": [\r\n                \"back\",\r\n                \"next\"\r\n            ],\r\n            \"heading\": \"Claim information\",\r\n            \"inputs\": [\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"or\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"event_cancellation\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"event_ticket_cancellation\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"registration_cancellation\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"Type of registered event\",\r\n                            \"name\": \"event-type\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.event-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.event-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.event-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.event-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Event Location\",\r\n                            \"name\": \"event-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Start Date\",\r\n                            \"name\": \"start-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"label\": \"End Date\",\r\n                            \"name\": \"end-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Event Booking Date\",\r\n                            \"name\": \"booking-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Initial Payment Date\",\r\n                            \"name\": \"payment-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Event Vendor\",\r\n                            \"name\": \"event-vendor\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Event Name\",\r\n                            \"name\": \"event-name\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"flatten\": true,\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"Total amount filed for reimbursement\",\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"amount-reimbursement\",\r\n                                    \"type\": \"group\"\r\n                                },\r\n                                {\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"checkbox\",\r\n                                            \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                            \"name\": \"third-party-confirm\",\r\n                                            \"type\": \"toggle\"\r\n                                        },\r\n                                        {\r\n                                            \"conditions\": [\r\n                                                {\r\n                                                    \"and\": [\r\n                                                        {\r\n                                                            \"matches\": {\r\n                                                                \"type\": \"value\",\r\n                                                                \"value\": false\r\n                                                            },\r\n                                                            \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                            \"type\": \"matches\"\r\n                                                        }\r\n                                                    ],\r\n                                                    \"type\": \"show\"\r\n                                                }\r\n                                            ],\r\n                                            \"inputs\": [\r\n                                                {\r\n                                                    \"displayType\": \"modal\",\r\n                                                    \"label\": \"Currency\",\r\n                                                    \"name\": \"currency\",\r\n                                                    \"options\": [\r\n                                                        {\r\n                                                            \"name\": \"USD\",\r\n                                                            \"value\": \"USD\"\r\n                                                        }\r\n                                                    ],\r\n                                                    \"type\": \"select\"\r\n                                                },\r\n                                                {\r\n                                                    \"displayType\": \"currency\",\r\n                                                    \"label\": \"Amount\",\r\n                                                    \"name\": \"amount\",\r\n                                                    \"type\": \"number\"\r\n                                                },\r\n                                                {\r\n                                                    \"label\": \"Third-party name or other insurance\",\r\n                                                    \"name\": \"third-party\",\r\n                                                    \"type\": \"text\"\r\n                                                }\r\n                                            ],\r\n                                            \"layout\": \"inline\",\r\n                                            \"name\": \"third-party-reimbursement-info\",\r\n                                            \"type\": \"group\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement\",\r\n                                    \"type\": \"group\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"radio\",\r\n                                    \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                                    \"name\": \"reimbursement-type\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                            \"value\": \"deposit\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"eCheck\",\r\n                                            \"value\": \"check\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"What happened?\",\r\n                                    \"lines\": 4,\r\n                                    \"name\": \"what-happened\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Text is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"textarea\"\r\n                                },\r\n                                {\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"select\",\r\n                                            \"label\": \"Country\",\r\n                                            \"name\": \"country\",\r\n                                            \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                            \"optionsUrlMethod\": \"GET\",\r\n                                            \"rules\": [\r\n                                                {\r\n                                                    \"errMsg\": \"Country is required\",\r\n                                                    \"name\": \"required\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"conditions\": [\r\n                                                {\r\n                                                    \"or\": [\r\n                                                        {\r\n                                                            \"matches\": {\r\n                                                                \"type\": \"value\",\r\n                                                                \"value\": \"US\"\r\n                                                            },\r\n                                                            \"target\": \"claim.incident-location.country\",\r\n                                                            \"type\": \"matches\"\r\n                                                        },\r\n                                                        {\r\n                                                            \"matches\": {\r\n                                                                \"type\": \"value\",\r\n                                                                \"value\": \"AU\"\r\n                                                            },\r\n                                                            \"target\": \"claim.incident-location.country\",\r\n                                                            \"type\": \"matches\"\r\n                                                        },\r\n                                                        {\r\n                                                            \"matches\": {\r\n                                                                \"type\": \"value\",\r\n                                                                \"value\": \"CA\"\r\n                                                            },\r\n                                                            \"target\": \"claim.incident-location.country\",\r\n                                                            \"type\": \"matches\"\r\n                                                        }\r\n                                                    ],\r\n                                                    \"type\": \"show\"\r\n                                                }\r\n                                            ],\r\n                                            \"label\": \"State / Province / Region\",\r\n                                            \"name\": \"state\",\r\n                                            \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                            \"optionsUrlMethod\": \"GET\",\r\n                                            \"optionsUrlParams\": [\r\n                                                {\r\n                                                    \"param\": \"country_code\",\r\n                                                    \"target\": \"claim.incident-location.country\"\r\n                                                }\r\n                                            ],\r\n                                            \"rules\": [\r\n                                                {\r\n                                                    \"errMsg\": \"State / Province / Region is required\",\r\n                                                    \"name\": \"required\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"City\",\r\n                                            \"name\": \"city\",\r\n                                            \"rules\": [\r\n                                                {\r\n                                                    \"errMsg\": \"City is required\",\r\n                                                    \"name\": \"required\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"Where did it happen?\",\r\n                                    \"name\": \"incident-location\",\r\n                                    \"type\": \"group\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"When did it happen?\",\r\n                                    \"name\": \"incident-date\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"A date is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"date\"\r\n                                },\r\n                                {\r\n                                    \"displayDirection\": \"row\",\r\n                                    \"displayType\": \"radio\",\r\n                                    \"label\": \"Did you cancel your prepaid reservations with your airline, hotel travel agency or tour operator?\",\r\n                                    \"name\": \"reservations-cancelled\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"Yes\",\r\n                                            \"value\": \"Yes\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"No\",\r\n                                            \"value\": \"No\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"You must make a selection.\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"Yes\"\r\n                                                    },\r\n                                                    \"target\": \"claim.reservations-cancelled\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"When?\",\r\n                                    \"name\": \"when-cancelled\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"A date is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"date\"\r\n                                },\r\n                                {\r\n                                    \"fileType\": \"image\",\r\n                                    \"label\": \"Attach supporting documents\",\r\n                                    \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                                    \"maxUploadMB\": 10,\r\n                                    \"name\": \"supporting-docs\",\r\n                                    \"pretext\": \"In order for us to process your claim a cancellation must be placed with your airline, hotel travel agency or tour operator first. When contacting your booking agency please obtain a copy of all supporting documentation such as a refund confirmation\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"You must attach at least one supporting document\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"subtext\": \"Original itinerary and travel booking confirmations, proof of reason for cancellation: i.e. medical report, or police report, cancellation and refund confirmation from your airline, hotel travel agency or tour operator, any other documents\",\r\n                                    \"type\": \"file\",\r\n                                    \"uploadUrl\": \"{claimApi}/upload\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"Any additional information\",\r\n                                    \"lines\": 4,\r\n                                    \"name\": \"additional-info\",\r\n                                    \"type\": \"textarea\"\r\n                                }\r\n                            ],\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"trip-cancellation\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"conditions\": [\r\n                                {\r\n                                    \"or\": [\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Injury\"\r\n                                            },\r\n                                            \"target\": \"personal.coverage-cause\",\r\n                                            \"type\": \"matches\"\r\n                                        },\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Sickness\"\r\n                                            },\r\n                                            \"target\": \"personal.coverage-cause\",\r\n                                            \"type\": \"matches\"\r\n                                        },\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Compli of Preg\"\r\n                                            },\r\n                                            \"target\": \"personal.coverage-cause\",\r\n                                            \"type\": \"matches\"\r\n                                        },\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Death\"\r\n                                            },\r\n                                            \"target\": \"personal.coverage-cause\",\r\n                                            \"type\": \"matches\"\r\n                                        },\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Quarantined\"\r\n                                            },\r\n                                            \"target\": \"personal.coverage-cause\",\r\n                                            \"type\": \"matches\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"show\"\r\n                                }\r\n                            ],\r\n                            \"flatten\": true,\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"label\": \"When did you seek medical treatment?\",\r\n                                    \"name\": \"treatment-date\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"A date is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"date\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"Where did you receive medical treatment?\",\r\n                                    \"name\": \"treatment-location\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Answer is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                },\r\n                                {\r\n                                    \"displayDirection\": \"row\",\r\n                                    \"displayType\": \"radio\",\r\n                                    \"label\": \"Were you admitted to a hospital?\",\r\n                                    \"name\": \"admitted-to-hospital\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"Yes\",\r\n                                            \"value\": \"Yes\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"No\",\r\n                                            \"value\": \"No\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"You must make a selection.\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"Yes\"\r\n                                                    },\r\n                                                    \"target\": \"claim.admitted-to-hospital\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"label\": \"Admission date\",\r\n                                            \"name\": \"admission-date\",\r\n                                            \"rules\": [\r\n                                                {\r\n                                                    \"errMsg\": \"A date is required\",\r\n                                                    \"name\": \"required\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"date\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Discharge date\",\r\n                                            \"name\": \"discharge-date\",\r\n                                            \"rules\": [\r\n                                                {\r\n                                                    \"errMsg\": \"A date is required\",\r\n                                                    \"name\": \"required\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"date\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"admission-info\",\r\n                                    \"type\": \"group\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"How did you pay for these expenses (cash, credit card, bank wire, and etc)?\",\r\n                                    \"name\": \"expense-payment-type\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Answer is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"What currency were these expenses paid in?\",\r\n                                    \"name\": \"expense-currency\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Answer is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"medical\",\r\n                            \"type\": \"group\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"event-cancellation\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"or\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"medex\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"travel_medical\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"dental\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"pet\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"pet_medical\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"pet_return\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did you seek medical treatment?\",\r\n                            \"name\": \"treatment-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Where did you receive medical treatment?\",\r\n                            \"name\": \"treatment-location\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Answer is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Were you admitted to a hospital?\",\r\n                            \"name\": \"admitted-to-hospital\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"conditions\": [\r\n                                {\r\n                                    \"and\": [\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Yes\"\r\n                                            },\r\n                                            \"target\": \"claim.admitted-to-hospital\",\r\n                                            \"type\": \"matches\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"show\"\r\n                                }\r\n                            ],\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"label\": \"Admission date\",\r\n                                    \"name\": \"admission-date\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"A date is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"date\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"Discharge date\",\r\n                                    \"name\": \"discharge-date\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"A date is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"date\"\r\n                                }\r\n                            ],\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"admission-info\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"How did you pay for these expenses (cash, credit card, bank wire, and etc)?\",\r\n                            \"name\": \"expense-payment-type\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Answer is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"label\": \"What currency were these expenses paid in?\",\r\n                            \"name\": \"expense-currency\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Answer is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"pretext\": \"All claims have to be substantiated with documentation. At least one supporting document must be submitted to file a claim. If you are unsure, please review the Required Documentation or contact us for clarification. Medical report, invoices, receipts.\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"subtext\": \"Medical report, Invoices, Receipts\",\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"column\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"medical\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"and\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"adad\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did you seek medical treatment?\",\r\n                            \"name\": \"treatment-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Where did you receive medical treatment?\",\r\n                            \"name\": \"treatment-location\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Answer is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Were you admitted to a hospital?\",\r\n                            \"name\": \"admitted-to-hospital\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"conditions\": [\r\n                                {\r\n                                    \"and\": [\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Yes\"\r\n                                            },\r\n                                            \"target\": \"claim.admitted-to-hospital\",\r\n                                            \"type\": \"matches\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"show\"\r\n                                }\r\n                            ],\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"label\": \"Admission date\",\r\n                                    \"name\": \"admission-date\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"A date is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"date\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"Discharge date\",\r\n                                    \"name\": \"discharge-date\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"A date is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"date\"\r\n                                }\r\n                            ],\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"admission-info\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"How did you pay for these expenses (cash, credit card, bank wire, and etc)?\",\r\n                            \"name\": \"expense-payment-type\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Answer is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"label\": \"What currency were these expenses paid in?\",\r\n                            \"name\": \"expense-currency\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Answer is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"pretext\": \"All claims have to be substantiated with documentation. At least one supporting document must be submitted to file a claim. If you are unsure, please review the Required Documentaion or contact us for clarification. Medical report, invoices, receipts.\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"subtext\": \"Medical report, Invoices, Receipts\",\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"accidental-death\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"or\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"baggage\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"baggage_and_personal_effects\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"baggage_delay\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"amount-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"What happened?\",\r\n                            \"name\": \"what-happened\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Lost\",\r\n                                    \"value\": \"lost\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"Damaged\",\r\n                                    \"value\": \"damaged\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"Stolen\",\r\n                                    \"value\": \"stolen\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"What happened? is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"label\": \"To\",\r\n                                    \"name\": \"to\",\r\n                                    \"type\": \"text\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"From\",\r\n                                    \"name\": \"from\",\r\n                                    \"type\": \"text\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"Date of travel\",\r\n                                    \"name\": \"date-of-travel\",\r\n                                    \"type\": \"date\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"Airline record locator number\",\r\n                                    \"name\": \"locator-number\",\r\n                                    \"type\": \"text\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"E-ticket number\",\r\n                                    \"name\": \"e-ticket-number\",\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Please add flight information here\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"flight-information\",\r\n                            \"repeatable\": true,\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Did you file a Property Irregularity Report with an airline?\",\r\n                            \"name\": \"property-irregularity-report\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Did you purchase any items?\",\r\n                            \"name\": \"purchase-any-items\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"pretext\": \"In order for us to process your claim, cancellation must be placed with your airline, hotel, travel agency, or tour operator first. When contacting your booking agency, please obtain a copy of all supporting documentation such as refund confirmation.\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"subtext\": \"Airline property irregularity report, police report or complaint, any receipts, any other documents\",\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"baggage\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"and\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"equipment\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"amount-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"select\",\r\n                            \"label\": \"What time did it happen?\",\r\n                            \"name\": \"incident-time\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"01:00\",\r\n                                    \"value\": \"01:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"02:00\",\r\n                                    \"value\": \"02:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"03:00\",\r\n                                    \"value\": \"03:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"04:00\",\r\n                                    \"value\": \"04:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"05:00\",\r\n                                    \"value\": \"05:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"06:00\",\r\n                                    \"value\": \"06:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"07:00\",\r\n                                    \"value\": \"07:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"08:00\",\r\n                                    \"value\": \"08:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"09:00\",\r\n                                    \"value\": \"09:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"10:00\",\r\n                                    \"value\": \"10:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"11:00\",\r\n                                    \"value\": \"11:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"12:00\",\r\n                                    \"value\": \"12:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"13:00\",\r\n                                    \"value\": \"13:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"14:00\",\r\n                                    \"value\": \"14:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"15:00\",\r\n                                    \"value\": \"15:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"16:00\",\r\n                                    \"value\": \"16:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"17:00\",\r\n                                    \"value\": \"17:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"18:00\",\r\n                                    \"value\": \"18:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"19:00\",\r\n                                    \"value\": \"19:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"20:00\",\r\n                                    \"value\": \"20:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"21:00\",\r\n                                    \"value\": \"21:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"22:00\",\r\n                                    \"value\": \"22:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"23:00\",\r\n                                    \"value\": \"23:00\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"24:00\",\r\n                                    \"value\": \"24:00\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A time is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"label\": \"Device\",\r\n                                    \"name\": \"device\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Text is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"devices-claimed\",\r\n                            \"repeatable\": true,\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did you purchase these device(s)?\",\r\n                            \"name\": \"purchase-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Did you file a police report or complaint?\",\r\n                            \"name\": \"police-report\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"subtext\": \"Original purchase receipt, copy of your police report or complaint, any other documents\",\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"equipment\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"or\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"cancellation\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"interruption\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"cfar\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"trip_cancellation\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"trip_interruption\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"amount-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Did you cancel your prepaid reservations with your airline, hotel travel agency or tour operator?\",\r\n                            \"name\": \"reservations-cancelled\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"conditions\": [\r\n                                {\r\n                                    \"and\": [\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Yes\"\r\n                                            },\r\n                                            \"target\": \"claim.reservations-cancelled\",\r\n                                            \"type\": \"matches\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"show\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"When?\",\r\n                            \"name\": \"when-cancelled\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"pretext\": \"In order for us to process your claim a cancellation must be placed with your airline, hotel travel agency or tour operator first. When contacting your booking agency please obtain a copy of all supporting documentation such as a refund confirmation\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"subtext\": \"Original itinerary and travel booking confirmations, proof of reason for cancellation: i.e. medical report, or police report, cancellation and refund confirmation from your airline, hotel travel agency or tour operator, any other documents\",\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"trip-cancellation\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"and\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"delay\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"label\": \"How many hours were you delayed?\",\r\n                            \"name\": \"amount-delayed\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Number is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"number\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"amount-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"subtext\": \"Original itinerary and travel booking confirmations, proof of reason for cancellation: i.e. medical report, or police report, cancellation and refund confirmation from your airline, hotel travel agency or tour operator, any other documents\",\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"delay\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"and\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"rvd\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Did you file an incident report?\",\r\n                            \"name\": \"incident-report\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"conditions\": [\r\n                                {\r\n                                    \"and\": [\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Yes\"\r\n                                            },\r\n                                            \"target\": \"claim.incident-report\",\r\n                                            \"type\": \"matches\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"show\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"When was the incident reported?\",\r\n                            \"name\": \"report-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Were you (the insured) driving the car at the time of the accident?\",\r\n                            \"name\": \"was-insured-driving\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"amount-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"subtext\": \"If the damage is repairable, please upload a copy of the repair estimate\",\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"rental-vehicle\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"and\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"single_occupancy\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Did your travelling companion cancel their prepaid reservations with their airline, hotel travel agency or tour operator?\",\r\n                            \"name\": \"reservations-cancelled\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"amount-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Was a third party responsible for the incident?\",\r\n                            \"name\": \"third-party-responsibility\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"single-occupancy\",\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"conditions\": [\r\n                        {\r\n                            \"or\": [\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"vhrd\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                },\r\n                                {\r\n                                    \"matches\": {\r\n                                        \"type\": \"value\",\r\n                                        \"value\": \"vacation_rental_damage\"\r\n                                    },\r\n                                    \"target\": \"personal.claim-type\",\r\n                                    \"type\": \"matches\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"show\"\r\n                        }\r\n                    ],\r\n                    \"flatten\": true,\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"What happened?\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"what-happened\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Text is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"textarea\"\r\n                        },\r\n                        {\r\n                            \"label\": \"When did it happen?\",\r\n                            \"name\": \"incident-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"select\",\r\n                                    \"label\": \"Country\",\r\n                                    \"name\": \"country\",\r\n                                    \"optionsUrl\": \"http://cxu-test.battleface.com/countries\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"Country is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"or\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"US\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"AU\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                },\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": \"CA\"\r\n                                                    },\r\n                                                    \"target\": \"claim.incident-location.country\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"label\": \"State / Province / Region\",\r\n                                    \"name\": \"state\",\r\n                                    \"optionsUrl\": \"{claimApi}/countries/{country_code}/states\",\r\n                                    \"optionsUrlMethod\": \"GET\",\r\n                                    \"optionsUrlParams\": [\r\n                                        {\r\n                                            \"param\": \"country_code\",\r\n                                            \"target\": \"claim.incident-location.country\"\r\n                                        }\r\n                                    ],\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"State / Province / Region is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"label\": \"City\",\r\n                                    \"name\": \"city\",\r\n                                    \"rules\": [\r\n                                        {\r\n                                            \"errMsg\": \"City is required\",\r\n                                            \"name\": \"required\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"text\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Where did it happen?\",\r\n                            \"name\": \"incident-location\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Is the incident theft related?\",\r\n                            \"name\": \"theft-related\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"Did you file an incident report?\",\r\n                            \"name\": \"incident-report\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"conditions\": [\r\n                                {\r\n                                    \"and\": [\r\n                                        {\r\n                                            \"matches\": {\r\n                                                \"type\": \"value\",\r\n                                                \"value\": \"Yes\"\r\n                                            },\r\n                                            \"target\": \"claim.incident-report\",\r\n                                            \"type\": \"matches\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"show\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"When was the incident reported?\",\r\n                            \"name\": \"report-date\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"A date is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"date\"\r\n                        },\r\n                        {\r\n                            \"displayDirection\": \"row\",\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If filing for damage, can it be repaired?\",\r\n                            \"name\": \"is-repairable\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Yes\",\r\n                                    \"value\": \"Yes\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"No\",\r\n                                    \"value\": \"No\"\r\n                                }\r\n                            ],\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must make a selection.\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"fileType\": \"image\",\r\n                            \"label\": \"Attach supporting documents\",\r\n                            \"maxUploadLabel\": \"Maximum file size is 10 MB\",\r\n                            \"maxUploadMB\": 10,\r\n                            \"name\": \"supporting-docs\",\r\n                            \"pretext\": \"If the damage is repairable, please upload a copy of the repair estimate\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"You must attach at least one supporting document\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"file\",\r\n                            \"uploadUrl\": \"{claimApi}/upload\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"modal\",\r\n                                    \"label\": \"Currency\",\r\n                                    \"name\": \"currency\",\r\n                                    \"options\": [\r\n                                        {\r\n                                            \"name\": \"USD\",\r\n                                            \"value\": \"USD\"\r\n                                        }\r\n                                    ],\r\n                                    \"type\": \"select\"\r\n                                },\r\n                                {\r\n                                    \"displayType\": \"currency\",\r\n                                    \"label\": \"Amount\",\r\n                                    \"name\": \"amount\",\r\n                                    \"type\": \"number\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount filed for reimbursement\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"amount-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"inputs\": [\r\n                                {\r\n                                    \"displayType\": \"checkbox\",\r\n                                    \"label\": \"I have no other insurance or third-party reimbursement\",\r\n                                    \"name\": \"third-party-confirm\",\r\n                                    \"type\": \"toggle\"\r\n                                },\r\n                                {\r\n                                    \"conditions\": [\r\n                                        {\r\n                                            \"and\": [\r\n                                                {\r\n                                                    \"matches\": {\r\n                                                        \"type\": \"value\",\r\n                                                        \"value\": false\r\n                                                    },\r\n                                                    \"target\": \"claim.third-party-reimbursement.third-party-confirm\",\r\n                                                    \"type\": \"matches\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"show\"\r\n                                        }\r\n                                    ],\r\n                                    \"inputs\": [\r\n                                        {\r\n                                            \"displayType\": \"modal\",\r\n                                            \"label\": \"Currency\",\r\n                                            \"name\": \"currency\",\r\n                                            \"options\": [\r\n                                                {\r\n                                                    \"name\": \"USD\",\r\n                                                    \"value\": \"USD\"\r\n                                                }\r\n                                            ],\r\n                                            \"type\": \"select\"\r\n                                        },\r\n                                        {\r\n                                            \"displayType\": \"currency\",\r\n                                            \"label\": \"Amount\",\r\n                                            \"name\": \"amount\",\r\n                                            \"type\": \"number\"\r\n                                        },\r\n                                        {\r\n                                            \"label\": \"Third-party name or other insurance\",\r\n                                            \"name\": \"third-party\",\r\n                                            \"type\": \"text\"\r\n                                        }\r\n                                    ],\r\n                                    \"layout\": \"inline\",\r\n                                    \"name\": \"third-party-reimbursement-info\",\r\n                                    \"type\": \"group\"\r\n                                }\r\n                            ],\r\n                            \"label\": \"Total amount reimbursed by third-parties, if any (e.g. Airline, cruise, other insurer)\",\r\n                            \"layout\": \"inline\",\r\n                            \"name\": \"third-party-reimbursement\",\r\n                            \"type\": \"group\"\r\n                        },\r\n                        {\r\n                            \"displayType\": \"radio\",\r\n                            \"label\": \"If your claim is approved, how would you like to be reimbursed?\",\r\n                            \"name\": \"reimbursement-type\",\r\n                            \"options\": [\r\n                                {\r\n                                    \"name\": \"Direct deposit / ACH (we will need your bank account and routing number)\",\r\n                                    \"value\": \"deposit\"\r\n                                },\r\n                                {\r\n                                    \"name\": \"eCheck\",\r\n                                    \"value\": \"check\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"select\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Any additional information\",\r\n                            \"lines\": 4,\r\n                            \"name\": \"additional-info\",\r\n                            \"type\": \"textarea\"\r\n                        }\r\n                    ],\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"vacation-rental\",\r\n                    \"type\": \"group\"\r\n                }\r\n            ],\r\n            \"labelAbbr\": \"Claim info\",\r\n            \"layout\": \"inline\",\r\n            \"name\": \"claim\",\r\n            \"type\": \"group\"\r\n        },\r\n        {\r\n            \"actions\": [\r\n                \"back\",\r\n                {\r\n                    \"filter\": [\r\n                        \"append-labels\"\r\n                    ],\r\n                    \"headers\": {},\r\n                    \"method\": \"POST\",\r\n                    \"type\": \"submit\",\r\n                    \"url\": \"{claimApi}/claim\"\r\n                }\r\n            ],\r\n            \"heading\": \"Consent\",\r\n            \"inputs\": [\r\n                {\r\n                    \"displayType\": \"border-box\",\r\n                    \"name\": \"notice\",\r\n                    \"text\": \"IMPORTANT **Please note** that if you do not authorise your agent / third party to deal with the claim, we will not be able to discuss any details of the claim with them due to Data Protection Act regulations.\\n\\nFor full details of our Privacy Policy [~**click here**~](https://www.battleface.com/en-us/privacy-policy/).\\n\\nFor our full Fraud disclosure [~**click here**~](https://www.battleface.com/wp-content/uploads/BF-for-Spinnaker-Fraud-Statement-ED1-06282022.pdf).\",\r\n                    \"type\": \"info-block\"\r\n                },\r\n                {\r\n                    \"displayType\": \"checkbox\",\r\n                    \"label\": \"I / We acknowledge that I have read and understand the Fraud Statement and am aware of the contents and implications of the Fraud Statement.\",\r\n                    \"name\": \"fraud-statement-consent\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must confirm\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"toggle\"\r\n                },\r\n                {\r\n                    \"displayType\": \"checkbox\",\r\n                    \"label\": \"I / We confirm that the information provided in this form and in any accompanying supporting documentation is true, accurate and complete to the best of all claimants' knowledge. In the event of false, inaccurate or incomplete information being provided the Insurer reserves the right to cancel your policy and reject your claim in full or part.\",\r\n                    \"name\": \"consent-1\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must confirm\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"toggle\"\r\n                },\r\n                {\r\n                    \"displayType\": \"checkbox\",\r\n                    \"label\": \"I / We give authority to battleface (as agent of the relevant underwriter) and their appointed representatives to approach any third party who holds information relating to the incident giving rise to this claim, including, but not limited to medical practitioners and hospitals/clinics where the claim relates to a medical condition or injury. Such authority will permit the third party(ies) to release relevant information to battleface to assist in the investigation and resolution of this claim.\",\r\n                    \"name\": \"consent-2\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must confirm\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"toggle\"\r\n                },\r\n                {\r\n                    \"displayType\": \"checkbox\",\r\n                    \"label\": \"I / We hereby grant battleface full rights of subrogation in respect of any payments made on behalf of all claimants.\",\r\n                    \"name\": \"consent-3\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must confirm\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"toggle\"\r\n                },\r\n                {\r\n                    \"displayType\": \"checkbox\",\r\n                    \"label\": \"I / We further agree to fully co-operate with any such recovery efforts from liable third party or parties and to immediately notify battleface if any lost or stolen property mentioned in this claim form is subsequently recovered.\",\r\n                    \"name\": \"consent-4\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must confirm\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"toggle\"\r\n                },\r\n                {\r\n                    \"displayType\": \"checkbox\",\r\n                    \"label\": \"Please confirm that you give your authority for battleface claims and their appointed representatives to approach any Third party who holds information relating to the incident given rise to this claim. Such authority will permit the Third part(ies) to release relevant information to battleface to assist in the investigation and resolution of this claim\",\r\n                    \"name\": \"consent-5\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"You must confirm\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"toggle\"\r\n                },\r\n                {\r\n                    \"inputs\": [\r\n                        {\r\n                            \"label\": \"First Name\",\r\n                            \"name\": \"first\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"First Name is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        },\r\n                        {\r\n                            \"label\": \"Last Name\",\r\n                            \"name\": \"last\",\r\n                            \"rules\": [\r\n                                {\r\n                                    \"errMsg\": \"Last Name is required\",\r\n                                    \"name\": \"required\"\r\n                                }\r\n                            ],\r\n                            \"type\": \"text\"\r\n                        }\r\n                    ],\r\n                    \"label\": \"Signature\",\r\n                    \"layout\": \"inline\",\r\n                    \"name\": \"signature\",\r\n                    \"rules\": [\r\n                        {\r\n                            \"errMsg\": \"Signature is required\",\r\n                            \"name\": \"required\"\r\n                        }\r\n                    ],\r\n                    \"type\": \"group\"\r\n                },\r\n                {\r\n                    \"default\": \"now\",\r\n                    \"disabled\": true,\r\n                    \"label\": \"Declaration Date\",\r\n                    \"name\": \"declaration-date\",\r\n                    \"type\": \"date\"\r\n                }\r\n            ],\r\n            \"labelAbbr\": \"Consent\",\r\n            \"layout\": \"inline\",\r\n            \"name\": \"consent\",\r\n            \"type\": \"group\"\r\n        }\r\n    ],\r\n    \"layout\": \"page\",\r\n    \"name\": \"fnol-spinnaker\"\r\n}"}],"_postman_id":"74360925-1d6d-48d2-bf11-ec2bba66bf3a"},{"name":"File Upload","id":"2d0acd2f-89b6-448c-b052-dac3a918708c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"files","value":"","description":"<p>One ore more Files to be upload</p>\n","type":"text"}]},"url":"{{host_gateway}}/api/v1/claim-fnol/upload","description":"<p>Upload a document to a temporary location. Keep track of the files to pass alone when creating the claim.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","upload"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"eaacb809-06d8-4423-bf6f-54b12522d00e","name":"File Upload","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"files","value":"","description":"One ore more Files to be upload","type":"text"}]},"url":"{{host_gateway}}/api/v1/claim_fnol/upload"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\"result\": [{\"id\": \"string\", \"filename\": \"string\"}]}"}],"_postman_id":"2d0acd2f-89b6-448c-b052-dac3a918708c"},{"name":"Create Claim","id":"f797e88a-b300-45be-89ef-e73a09022589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"personal\": {\n    \"label\": \"Personal\",\n    \"value\": {\n      \"policy-num\": {\n        \"label\": \"Policy Number\",\n        \"value\": \"RITI-BF1004200069\"\n      },\n      \"name\": {\n        \"value\": {\n          \"first\": {\n            \"label\": \"First Name\",\n            \"value\": \"John\"\n          },\n          \"last\": {\n            \"label\": \"Last Name\",\n            \"value\": \"Doe\"\n          }\n        }\n      },\n      \"email\": {\n        \"label\": \"Email\",\n        \"value\": \"test@example.com\"\n      },\n      \"phone-number\": {\n        \"label\": \"Contact number\",\n        \"value\": \"(555) 555-5555\"\n      },\n      \"claim-type\": {\n        \"label\": \"Claim Type\",\n        \"value\": \"cancellation\"\n      },\n      \"coverage-cause\": {\n        \"label\": \"Cause\",\n        \"value\": \"Injury\"\n      }\n    }\n  },\n  \"claim\": {\n    \"label\": \"Claim\",\n    \"value\": {\n      \"incident-date\": {\n        \"label\": \"When did it happen?\",\n        \"value\": \"2022-10-15T03:59:59.000Z\"\n      },\n      \"incident-location\": {\n        \"label\": \"Where did this happen?\",\n        \"value\": {\n          \"country\": {\n            \"label\": \"Country\",\n            \"value\": \"US\"\n          }\n        }\n      }\n    }\n  },\n  \"consent\": {\n    \"label\": \"Consent\",\n    \"value\": {\n      \"signature\": {\n        \"value\": {\n          \"first\": {\n            \"label\": \"First Name\",\n            \"value\": \"John\"\n          },\n          \"last\": {\n            \"label\": \"Last Name\",\n            \"value\": \"Doe\"\n          }\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim-fnol/claim","description":"<p>Creates a claim</p>\n<p>The example body is the minimum required to create a claim.</p>\n<p>Any further data will be added ass additional data. It must match one of the following structures:</p>\n<p>There are two acceptable formats. File and Label-Value pair.</p>\n<h3 id=\"file-format\">File format</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"label\": \"File:\",\n  \"id\": \"c80e2239-34cb-4c73-91cb-9d6ff53cfd5a\",\n  \"filename\": \"file.png\"\n}\n\n</code></pre>\n<p>The label and filename will be printed in the PDF document. The 'id' is the temporary id provided by the upload endpoint that will attach the file to the claim.</p>\n<h3 id=\"label-value-pair-format\">Label-Value pair format</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"label\": \"\",\n  \"value\": \"\"\n}\n\n</code></pre>\n<p>label: string<br />value: string, number, bool, a single or array of value-pairs/files.</p>\n<h2 id=\"optional-parameters-with-additional-functionality\">Optional Parameters with additional functionality</h2>\n<h4 id=\"external-ref\">External Ref</h4>\n<p>Strictly for reference. If passed, the external ref will be attached to the Claim and be returned with the Claim Status endpoint. Any string is accepted, but it should be globally unique to avoid claims with duplicate external refs.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"personal\": {\n        ...,\n        \"external-ref\": {\n            \"label\": \"External Reference ID\",\n            \"value\": \"this-can-be-anything\"\n        },\n    }\n}\n\n</code></pre>\n<h4 id=\"date-of-birth\">Date of Birth</h4>\n<p>If passed, overrides the Date of Birth provided on the policy. This is required when the claimant differs from the primary policy holder.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"personal\": {\n        ...,\n        \"dob\": {\n            \"label\": \"Date of Birth\",\n            \"value\": \"1994-03-03\"\n        },\n    }\n}\n\n</code></pre>\n<h2 id=\"example-request-with-additional-details\">Example Request with additional details</h2>\n<p>Assume we want to also collect the State and City for the incident location.<br />We simply add those values to the minimum required payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"personal\": ...,\n  \"claim\": {\n    \"label\": \"Claim\",\n    \"value\": {\n      \"incident-date\": ...,\n      \"incident-location\": {\n        \"label\": \"Where did this happen?\",\n        \"value\": {\n          \"city\": {\n            \"label\": \"City\",\n            \"value\": \"Columbus\"\n          },\n          \"state\": {\n            \"label\": \"State\",\n            \"value\": \"OH\"\n          },\n          \"country\": ...\n        }\n      }\n    }\n  },\n  \"consent\": ...,\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Any further data will be added to the PDF but otherwise unused by NIS. It must match one of the following structures:\nThere are two acceptable formats. File and Label-Value pair.\n### File format\n```json\n{\n  \"label\": \"File:\",\n  \"id\": \"c80e2239-34cb-4c73-91cb-9d6ff53cfd5a\",\n  \"filename\": \"file.png\"\n}\n\n</code></pre><p>The label and filename will be printed in the PDF document. The 'id' is the temporary id provided by the upload endpoint that will attach the file to the claim.</p>\n<h3 id=\"label-value-pair-format-1\">Label-Value pair format</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"label\": \"\",\n  \"value\": \"\"\n}\n\n</code></pre>\n<p>label: string<br />value: string, number, bool, a single or array of value-pairs/files.</p>\n<h2 id=\"example-request-with-additional-details-1\">Example Request with additional details</h2>\n<p>Assume we want to also collect the State and City for the incident location.<br />We simply add those values to the minimum required payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"personal\": ...,\n  \"claim\": {\n    \"label\": \"Claim\",\n    \"value\": {\n      \"incident-date\": ...,\n      \"incident-location\": {\n        \"label\": \"Where did this happen?\",\n        \"value\": {\n          \"city\": {\n            \"label\": \"City\",\n            \"value\": \"Columbus\"\n          },\n          \"state\": {\n            \"label\": \"State\",\n            \"value\": \"OH\"\n          },\n          \"country\": ...\n        }\n      }\n    }\n  },\n  \"consent\": ...,\n}\n\n</code></pre>\n<p>```</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","claim"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"7cf5991c-c5b2-49aa-91d4-18a2a7da98d6","name":"Create Claim","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"personal\": {\n    \"label\": \"Personal\",\n    \"value\": {\n      \"policy-num\": {\n        \"label\": \"Policy Number\",\n        \"value\": \"RITI-BF1004200069\"\n      },\n      \"name\": {\n        \"value\": {\n          \"first\": {\n            \"label\": \"First Name\",\n            \"value\": \"John\"\n          },\n          \"last\": {\n            \"label\": \"Last Name\",\n            \"value\": \"Doe\"\n          }\n        }\n      },\n      \"email\": {\n        \"label\": \"Email\",\n        \"value\": \"test@example.com\"\n      },\n      \"phone-number\": {\n        \"label\": \"Contact number\",\n        \"value\": \"(555) 555-5555\"\n      },\n      \"claim-type\": {\n        \"label\": \"Claim Type\",\n        \"value\": \"cancellation\"\n      },\n      \"coverage-cause\": {\n        \"label\": \"Cause\",\n        \"value\": \"Injury\"\n      }\n    }\n  },\n  \"claim\": {\n    \"label\": \"Claim\",\n    \"value\": {\n      \"incident-date\": {\n        \"label\": \"When did it happen?\",\n        \"value\": \"2022-10-15T03:59:59.000Z\"\n      },\n      \"incident-location\": {\n        \"label\": \"Where did this happen?\",\n        \"value\": {\n          \"country\": {\n            \"label\": \"Country\",\n            \"value\": \"US\"\n          }\n        }\n      }\n    }\n  },\n  \"consent\": {\n    \"label\": \"Consent\",\n    \"value\": {\n      \"signature\": {\n        \"value\": {\n          \"first\": {\n            \"label\": \"First Name\",\n            \"value\": \"John\"\n          },\n          \"last\": {\n            \"label\": \"Last Name\",\n            \"value\": \"Doe\"\n          }\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/v1/claim_fnol/claim"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"task_queued\": true\n}"}],"_postman_id":"f797e88a-b300-45be-89ef-e73a09022589"}],"id":"02b885c1-845b-4180-a504-295fbc97b354","description":"<p>We offer claims administration services and have a few ways to intake customer claims.</p>\n<p>Our first option is to use our FNOL (First Notification of Loss) form : <a href=\"https://claims.robinassist.com/file-a-claim/?carrier=general\">https://claims.robinassist.com/file-a-claim/?carrier=general</a> here a customer can file a claim directly.</p>\n<p>Another option would be for you to integrate via our Claims API and create your own FNOL UI. To File a claim they would start by searching for the policy -&gt; retrieve any questions that we need answered on the claim -&gt; upload any necessary files -&gt; create claim</p>\n","_postman_id":"02b885c1-845b-4180-a504-295fbc97b354","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Cancellations","item":[{"name":"Cancellation Preview","id":"07adc41d-c5b7-4763-bb1a-62e909d3c482","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview","description":"<p>Allows to check the outcome of the cancellation. Can be called multiple times per specific order, since changes are not stored.  </p>\n<p>Multiple outcome scenarios are possible and all are available as response examples.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","orders","{{order_number}}","cancellation-preview"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"180b2e4a-abd3-4b85-8705-592fa9a56053","name":"Cancellation Full Refund Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"667c297f243e046b8a09bd96\",\n        \"order_number\": \"1-SEP924E-F8A04CAF59CB\",\n        \"client_referral_code\": \"e229Ytrsq1JB\",\n        \"client_id\": 631,\n        \"status\": \"Cancelled\",\n        \"premium\": 0,\n        \"refund_amount\": 3289.32,\n        \"total\": 0,\n        \"currency_id\": \"AUD\",\n        \"is_refunded\": true,\n        \"status_updated_at\": \"2024-10-03T06:28:54.493000Z\",\n        \"ordered_at\": \"2024-09-30T12:44:52.781000Z\",\n        \"approved_at\": \"2024-10-02T06:17:08.656000Z\"\n    }\n}"},{"id":"cabe8033-7ece-48d3-8daf-3fe3fa2dbc26","name":"Partial Refund Cancellation Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"667c297f243e046b8a09bd96\",\n        \"order_number\": \"1-SEP87D3-0C9C086A5298\",\n        \"client_referral_code\": \"e229Ytrsq1JB\",\n        \"client_id\": 631,\n        \"status\": \"Cancelled\",\n        \"premium\": 1283.67,\n        \"tax\": 11.45,\n        \"refund_amount\": 2005.68,\n        \"total\": 1283.67,\n        \"currency_id\": \"AUD\",\n        \"is_refunded\": true,\n        \"status_updated_at\": \"2024-10-02T06:24:40.022000Z\",\n        \"ordered_at\": \"2024-09-01T00:00:00.000000Z\",\n        \"approved_at\": \"2024-10-02T06:18:37.241000Z\"\n    }\n}"},{"id":"d69062c6-44be-49ac-a3b5-a4cfa708176f","name":"No Refund Cancellation Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"667c297f243e046b8a09bd96\",\n        \"order_number\": \"1-SEP88BC-0E0CC0C2446A\",\n        \"client_referral_code\": \"e229Ytrsq1JB\",\n        \"client_id\": 631,\n        \"status\": \"Cancelled\",\n        \"premium\": 5177.82,\n        \"tax\": 46.18,\n        \"total\": 5177.82,\n        \"currency_id\": \"AUD\",\n        \"is_refunded\": true,\n        \"status_updated_at\": \"2024-10-02T06:35:50.298000Z\",\n        \"ordered_at\": \"2024-09-01T00:00:00.000000Z\",\n        \"approved_at\": \"2024-10-02T06:30:37.422000Z\"\n    }\n}"},{"id":"6dbdff63-c41f-4117-a06f-6657b1747bd6","name":"Not Allowed to Cancel Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"Not Acceptable","code":406,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not allowed to cancel.\",\n    \"error\": \"You are not allowed to cancel.\",\n    \"errors\": {\n        \"message\": \"You are not allowed to cancel.\",\n        \"error\": \"You are not allowed to cancel.\",\n        \"errors\": [],\n        \"meta\": {\n            \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"},{"id":"1c2ae81e-6468-4fed-a169-63f0595c93db","name":"Disabled Cancellations Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"Not Acceptable","code":406,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 07:04:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"138"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Currently cancellations are disabled.\",\n    \"error\": \"Currently cancellations are disabled.\",\n    \"errors\": {\n        \"message\": \"Currently cancellations are disabled.\",\n        \"error\": \"Currently cancellations are disabled.\",\n        \"errors\": [],\n        \"meta\": {\n            \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"}],"_postman_id":"07adc41d-c5b7-4763-bb1a-62e909d3c482"},{"name":"Confirm Cancellation","id":"a08bb598-8bb2-4bb6-9b05-fcb9f561ac22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation","description":"<p>Will trigger and refund cancellation if allowed. Successful cancellation changes are stored, thus this cancellation endpoint can be called only once.  </p>\n<p>Multiple outcome scenarios are possible and all are available as response examples.</p>\n","urlObject":{"path":["api","partner","orders","{{order_number}}","cancellation"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"dbe07d0e-637b-4915-92c9-89147792c8ed","name":"Cancellation Full Refund Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"667c297f243e046b8a09bd96\",\n        \"order_number\": \"1-SEP924E-F8A04CAF59CB\",\n        \"client_referral_code\": \"e229Ytrsq1JB\",\n        \"client_id\": 631,\n        \"status\": \"Cancelled\",\n        \"premium\": 0,\n        \"refund_amount\": 3289.32,\n        \"total\": 0,\n        \"currency_id\": \"AUD\",\n        \"is_refunded\": true,\n        \"status_updated_at\": \"2024-10-03T06:28:54.493000Z\",\n        \"ordered_at\": \"2024-09-30T12:44:52.781000Z\",\n        \"approved_at\": \"2024-10-02T06:17:08.656000Z\"\n    }\n}"},{"id":"873b23d8-5c81-4003-b571-96df5f101d23","name":"Partial Refund Cancellation Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"667c297f243e046b8a09bd96\",\n        \"order_number\": \"1-SEP87D3-0C9C086A5298\",\n        \"client_referral_code\": \"e229Ytrsq1JB\",\n        \"client_id\": 631,\n        \"status\": \"Cancelled\",\n        \"premium\": 1283.67,\n        \"tax\": 11.45,\n        \"refund_amount\": 2005.68,\n        \"total\": 1283.67,\n        \"currency_id\": \"AUD\",\n        \"is_refunded\": true,\n        \"status_updated_at\": \"2024-10-02T06:24:40.022000Z\",\n        \"ordered_at\": \"2024-09-01T00:00:00.000000Z\",\n        \"approved_at\": \"2024-10-02T06:18:37.241000Z\"\n    }\n}"},{"id":"fba8ffea-8268-4c29-9850-bfd3fc843298","name":"No Refund Cancellation Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"667c297f243e046b8a09bd96\",\n        \"order_number\": \"1-SEP88BC-0E0CC0C2446A\",\n        \"client_referral_code\": \"e229Ytrsq1JB\",\n        \"client_id\": 631,\n        \"status\": \"Cancelled\",\n        \"premium\": 5177.82,\n        \"tax\": 46.18,\n        \"total\": 5177.82,\n        \"currency_id\": \"AUD\",\n        \"is_refunded\": true,\n        \"status_updated_at\": \"2024-10-02T06:35:50.298000Z\",\n        \"ordered_at\": \"2024-09-01T00:00:00.000000Z\",\n        \"approved_at\": \"2024-10-02T06:30:37.422000Z\"\n    }\n}"},{"id":"71682518-507c-4deb-bd05-f515b4035137","name":"Not Allowed to Cancel Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation-preview"},"status":"Not Acceptable","code":406,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 06:36:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You are not allowed to cancel.\",\n    \"error\": \"You are not allowed to cancel.\",\n    \"errors\": {\n        \"message\": \"You are not allowed to cancel.\",\n        \"error\": \"You are not allowed to cancel.\",\n        \"errors\": [],\n        \"meta\": {\n            \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"},{"id":"527e2a1e-ef35-49cd-97ac-0c952a6f745d","name":"Disabled Cancellations Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation"},"status":"Not Acceptable","code":406,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 03 Oct 2024 07:05:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"138"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Currently cancellations are disabled.\",\n    \"error\": \"Currently cancellations are disabled.\",\n    \"errors\": {\n        \"message\": \"Currently cancellations are disabled.\",\n        \"error\": \"Currently cancellations are disabled.\",\n        \"errors\": [],\n        \"meta\": {\n            \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"},{"id":"36f90144-f983-46d1-bfa9-4b55440bf446","name":"Transition from Cancelled to Cancelled  not allow","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/api/partner/orders/{{order_number}}/cancellation"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Oct 2024 10:06:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"142"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Cannot change status from Cancelled to Cancelled\",\n    \"error\": \"Cannot change status from Cancelled to Cancelled\",\n    \"errors\": {\n        \"message\": \"Cannot change status from Cancelled to Cancelled\",\n        \"error\": \"Cannot change status from Cancelled to Cancelled\",\n        \"errors\": [],\n        \"meta\": {\n            \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n        }\n    },\n    \"meta\": {\n        \"type\": \"Battleface\\\\Common\\\\Exceptions\\\\SystemException\"\n    }\n}"}],"_postman_id":"a08bb598-8bb2-4bb6-9b05-fcb9f561ac22"}],"id":"42a86db0-a1be-4d62-8c64-008264c036a3","description":"<p>Cancellations have a number of outcomes:</p>\n<ol>\n<li><p>Cancellation cannot be allowed</p>\n</li>\n<li><p>Cancellation is allowed, but without a refund</p>\n</li>\n<li><p>Cancellation is allowed and can be partially refunded</p>\n</li>\n<li><p>Cancellation is allowed and is fully refunded</p>\n</li>\n</ol>\n<p>We have a couple of endpoints that can be used to execute cancellations:</p>\n<ol>\n<li><p>Cancellation Preview - cancellation is simulated, but nothing will be finalized and thus this endpoint can be triggered multiple times, nothing is finalized.</p>\n</li>\n<li><p>Cancellation Endpoint - cancellation is executed and stored. This can be called only once per order, since changes are final.</p>\n</li>\n</ol>\n","_postman_id":"42a86db0-a1be-4d62-8c64-008264c036a3","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Additional Endpoints","item":[{"name":"Additional Quotes","item":[{"name":"Additional Quote Create Quote Preview With Content","id":"853b04d9-238a-405b-9b6b-310ca1ed6130","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"\", // required\r\n    \"end_date\": \"\", // required\r\n    \"deposit_date\": \"{{deposit_date}}\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true, // required\r\n            \"dob\": \"{{dob}}\", // required\r\n            \"trip_cost\": {{trip_cost}} // required\r\n        }\r\n    ],\r\n    \"product\": {{product}}, // required\r\n    \"host_country\": \"{{country_code}}\", // required\r\n    //\"host_country_state\": \"{{host_country_state_code}}\", // required for Canada, Switzerland, and United States\r\n    \"currency\": \"EUR\", // required\r\n    \"destinations\": [ // required\r\n        \"US\"\r\n    ],\r\n    \"packages\": [ // at least one package required\r\n        \"base_package\"\r\n    ],\r\n    \"text_engine_language\": \"en-us\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/text-engine/quote/preview","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","text-engine","quote","preview"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"ae2c3c18-736d-43fe-ad92-16ab2796291c","name":"Create quote with content","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"\", // required\r\n    \"end_date\": \"\", // required\r\n    \"deposit_date\": \"{{deposit_date}}\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true, // required\r\n            \"dob\": \"{{dob}}\", // required\r\n            \"trip_cost\": {{trip_cost}} // required\r\n        }\r\n    ],\r\n    \"product\": {{product}}, // required\r\n    \"host_country\": \"{{country_code}}\", // required\r\n    //\"host_country_state\": \"{{host_country_state_code}}\", // required for Canada, Switzerland, and United States\r\n    \"currency\": \"EUR\", // required\r\n    \"destinations\": [ // required\r\n        \"US\"\r\n    ],\r\n    \"packages\": [ // at least one package required\r\n        \"base_package\"\r\n    ],\r\n    \"text_engine_language\": \"en-us\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/text-engine/quote/preview"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": {\n        \"email\": null,\n        \"affiliate_id\": 1013,\n        \"product_id\": \"1318\",\n        \"product_uuid\": \"4181f6fb-b15b-4cb3-9b5b-66d7187fe790\",\n        \"quoted_price\": 137.5,\n        \"taxes\": {\n            \"stamp_duty\": null,\n            \"witholding\": null,\n            \"gst\": null,\n            \"tax\": 12.5\n        },\n        \"discounts\": {\n            \"amount\": 0\n        },\n        \"minimums\": {\n            \"amount\": 0,\n            \"value\": 0\n        },\n        \"deductibles\": {\n            \"excess_fee\": null\n        },\n        \"currency_id\": \"USD\",\n        \"host_country\": \"BE\",\n        \"host_country_state\": null,\n        \"trip_length\": 11,\n        \"start_date\": \"2025-07-28\",\n        \"end_date\": \"2025-08-07\",\n        \"deposit_date\": \"2025-07-08\",\n        \"details\": [\n            {\n                \"package_id\": 37052,\n                \"package_alias\": \"base_package\",\n                \"amount\": 125,\n                \"type\": \"Base Package\",\n                \"value\": null,\n                \"detail\": null\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 50,\n                \"dob\": \"1975-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 2500\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        },\n        \"fees\": [],\n        \"destinations\": [\n            {\n                \"country\": \"US\",\n                \"risk_index\": 1\n            }\n        ]\n    },\n    \"text_engine_response\": {\n        \"product_name\": \"Amadeus Product Name Test\",\n        \"product_description\": \"Product Description Test\",\n        \"package\": {\n            \"base_package\": {\n                \"name\": \"Base Package\",\n                \"description\": \"Base package description\",\n                \"benefit\": {\n                    \"trip_cancellation_benefit\": {\n                        \"name\": \"Trip Cancellation\",\n                        \"description\": \"Trip cancellation description\"\n                    }\n                }\n            }\n        },\n        \"general_eligibility\": \"Age limitations: No cover is available for customer aged 85 or older. Pre-existing medical condition: Cover is only provided, if the medical condition had been stable in the last 180 days. Cancellation period: if the period of insurance exceeds 1 month (from purchase date until return date) and the cover is not suitable to you, you have the right to cancel within 14 days of receiving the Policy documentation, under condition that you did not yet start your trip or make a claim against the policy, whether accepted or declined.\",\n        \"important_and_legal_notes\": \"I confirm I have read and understood the policy document/Evidence of Cover, Important Product Information Documents and insurance disclosures.\",\n        \"terms_and_conditions\": \"https://example.com/terms_and_conditions.pdf\",\n        \"insurance_policy_plan\": \"https://example.com/insurance_policy_plan.pdf\",\n        \"important_notices_and_disclosures\": \"https://example.com/important_notices_and_disclosures.pdf\",\n        \"assistance_service\": \"https://example.com/assistance_service.pdf\",\n        \"customer_product_information\": \"https://example.com/customer_product_information.pdf\",\n        \"battleface_privacy_policy\": \"https://example.com/battleface_privacy_policy.pdf\",\n        \"battleface_terms_and_conditions\": \"https://example.com/battleface_terms_and_conditions.pdf\",\n        \"battleface_cookie_policy\": \"https://example.com/battleface_cookie_policy.pdf\",\n        \"robin_assist-complaints_policy\": \"https://example.com/robin_assist-complaints_policy.pdf\",\n        \"robin_assist-financial_hardship_policy\": \"https://example.com/robin_assist-financial_hardship_policy.pdf\",\n        \"robin_assist-family_violence_policy\": \"https://example.com/robin_assist-family_violence_policy.pdf\",\n        \"logo_image\": \"https://example.com/logo_image_url.png\"\n    }\n}"}],"_postman_id":"853b04d9-238a-405b-9b6b-310ca1ed6130"},{"name":"Create Dynamic Quotation","event":[{"listen":"test","script":{"exec":["pm.environment.set(\"quote_number\", JSON.parse(responseBody).data.quote_number);\r","pm.environment.set(\"quote_id\", JSON.parse(responseBody).data.id);"],"type":"text/javascript","id":"67da874a-6d54-471a-9525-b3839df48647"}}],"id":"6b1fa95c-bf40-46f3-b35c-8b4634f398f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2023-01-12\",\r\n    \"end_date\": \"2023-01-24\",\r\n    \"deposit_date\": \"2023-01-01\",\r\n    \"program\": {{program_id}},\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"products\": {\r\n        \"ids\": [ {{api_product_id}} ]\r\n    },\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"dob\": \"1998-01-01\",\r\n            \"trip_cost\": 250\r\n        }\r\n    ],\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"currency\": \"USD\",\r\n    \"destinations\": [\r\n        \"US\"\r\n    ],\r\n    \"packages\": [\r\n        \"base_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote/dynamic","description":"<p>This endpoint does not require a product_id but a program_id. The product id is inferred based on additional constraints provided:</p>\n<ul>\n<li>host_country_state - 2-letter State code</li>\n<li>products (Optional)- Object containing either of the following keys:<ul>\n<li>ids - an array of product id's</li>\n<li>uuids - an array of product uuid's</li>\n</ul>\n</li>\n</ul>\n<p>Request will only succeed if the provided constraints result in exactly 1 active product.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","quote","dynamic"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"5013590d-8040-4308-9374-090089c7d59e","name":"Filtering by Product Id","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2023-01-12\",\r\n    \"end_date\": \"2023-01-24\",\r\n    \"deposit_date\": \"2023-01-01\",\r\n    \"program\": {{program_id}},\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"products\": {\r\n        \"ids\": [ {{api_product_id}} ]\r\n    },\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"dob\": \"1998-01-01\",\r\n            \"trip_cost\": 250\r\n        }\r\n    ],\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"currency\": \"USD\",\r\n    \"destinations\": [\r\n        \"US\"\r\n    ],\r\n    \"packages\": [\r\n        \"base_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 08 Dec 2022 15:12:59 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6391fefbeb0b304375052e72\",\n        \"id\": \"6391fefbeb0b304375052e72\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC82073-1007\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1007\",\n        \"quoted_price\": 22.75,\n        \"taxes\": {\n            \"stamp_duty\": null,\n            \"witholding\": null\n        },\n        \"deductibles\": {\n            \"excess_fee\": null\n        },\n        \"currency_id\": \"USD\",\n        \"host_country\": \"US\",\n        \"host_country_state\": \"AL\",\n        \"trip_length\": 13,\n        \"start_date\": \"2022-12-12\",\n        \"end_date\": \"2022-12-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-08 03:12:12\",\n        \"updated_at\": \"2022-12-08 03:12:12\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 76,\n                \"package_alias\": \"base_package\",\n                \"amount\": 22.75,\n                \"type\": \"Base Package\",\n                \"value\": null,\n                \"detail\": null\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 24,\n                \"dob\": \"1998-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 250\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"24d08c7f-a32e-4a5d-8acc-e240131ff3d6","name":"Filtering by Product Uuid","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2023-01-12\",\r\n    \"end_date\": \"2023-01-24\",\r\n    \"deposit_date\": \"2023-01-01\",\r\n    \"program\": {{program_id}},\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"products\": {\r\n        \"uuids\": [ {{product_uuid}} ]\r\n    },\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"dob\": \"1998-01-01\",\r\n            \"trip_cost\": 250\r\n        }\r\n    ],\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"currency\": \"USD\",\r\n    \"destinations\": [\r\n        \"US\"\r\n    ],\r\n    \"packages\": [\r\n        \"base_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 08 Dec 2022 15:12:59 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"_id\": \"6391fefbeb0b304375052e72\",\n        \"id\": \"6391fefbeb0b304375052e72\",\n        \"document_version\": 1,\n        \"quote_number\": \"1-DEC82073-1007\",\n        \"email\": null,\n        \"affiliate_id\": 1,\n        \"product_id\": \"1007\",\n        \"quoted_price\": 22.75,\n        \"taxes\": {\n            \"stamp_duty\": null,\n            \"witholding\": null\n        },\n        \"deductibles\": {\n            \"excess_fee\": null\n        },\n        \"currency_id\": \"USD\",\n        \"host_country\": \"US\",\n        \"host_country_state\": \"AL\",\n        \"trip_length\": 13,\n        \"start_date\": \"2022-12-12\",\n        \"end_date\": \"2022-12-24\",\n        \"deposit_date\": \"2022-12-01\",\n        \"created_at\": \"2022-12-08 03:12:12\",\n        \"updated_at\": \"2022-12-08 03:12:12\",\n        \"deleted_at\": null,\n        \"details\": [\n            {\n                \"package_id\": 76,\n                \"package_alias\": \"base_package\",\n                \"amount\": 22.75,\n                \"type\": \"Base Package\",\n                \"value\": null,\n                \"detail\": null\n            }\n        ],\n        \"applicants\": [\n            {\n                \"type\": \"applicant\",\n                \"email\": null,\n                \"is_main\": true,\n                \"age\": 24,\n                \"dob\": \"1998-01-01T00:00:00.000000Z\",\n                \"trip_cost\": 250\n            }\n        ],\n        \"destinations\": [\n            {\n                \"country\": \"DE\",\n                \"risk_index\": 1\n            }\n        ],\n        \"reference\": {\n            \"employee_id\": null,\n            \"external\": null\n        }\n    }\n}"},{"id":"a5ab425e-5dbe-4299-9393-d0a6365f0e6c","name":"Generic Filtering","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2023-01-12\",\r\n    \"end_date\": \"2023-01-24\",\r\n    \"deposit_date\": \"2023-01-01\",\r\n    \"program\": {{program_id}},\r\n    \"host_country_state\": \"{{host_country_state_code}}\",\r\n    \"applicants\": [\r\n        {\r\n            \"is_main\": true,\r\n            \"dob\": \"1998-01-01\",\r\n            \"trip_cost\": 250\r\n        }\r\n    ],\r\n    \"host_country\": \"{{country_code}}\",\r\n    \"currency\": \"USD\",\r\n    \"destinations\": [\r\n        \"US\"\r\n    ],\r\n    \"packages\": [\r\n        \"base_package\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/quote/dynamic"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6b1fa95c-bf40-46f3-b35c-8b4634f398f1"}],"id":"609c3da5-e9d8-4336-ad54-7d8a665557ba","_postman_id":"609c3da5-e9d8-4336-ad54-7d8a665557ba","description":"","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Additional Order","item":[{"name":"Dynamic Order","event":[{"listen":"test","script":{"exec":["pm.environment.set(\"order_number\", JSON.parse(responseBody).data.order_number);","pm.environment.set(\"policy_number\", JSON.parse(responseBody).data.items[0].policy_number);","pm.environment.set(\"program_id\", JSON.parse(responseBody).data.items[0].program_id);"],"type":"text/javascript","id":"81b995b8-c7f0-4ee8-af5e-7084c42c8571"}}],"id":"edc2ab59-df00-4b89-aa77-f877ff830fbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"USD\",\n    \"start_at\": \"2023-01-15\",\n    \"end_at\": \"2023-02-25\",\n    \"deposit_at\": \"2023-01-10\",\n    \"signed_at\": \"2022-07-09\",\n    \"program\": {{program_id}},\n    \"products\": {\n        \"ids\": [ {{api_product_id}} ]\n    },\n    \"host_country_state\": \"{{host_country_state_code}}\",\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"test@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"is_main\": true,\n            \"trip_cost\": 100\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"John\",\n        \"middle_name\": \"Doe\",\n        \"last_name\": \"John\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\"\n    },\n    \"destinations\": [\n        {\n            \"country_code\": \"US\"\n        }\n    ] \n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed/dynamic","description":"<p>Create an order from a previously given quote. You will still need to provide details of the order and details in the order will override those on the quote.</p>\n<p>This endpoint does not require a product_id but a program_id. The product id is inferred based on additional constraints provided:</p>\n<ul>\n<li>host_country_state - 2-letter State code</li>\n<li>products (Optional)- Object containing either of the following keys:<ul>\n<li>ids - an array of product id's</li>\n<li>uuids - an array of product uuid's</li>\n</ul>\n</li>\n</ul>\n<p>Request will only succeed if the provided constraints result in exactly 1 active product.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","orders","condensed","dynamic"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"c7236009-a80c-4d57-aa03-dc07e2574f76","name":"Filtering by Product Id","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"USD\",\n    \"start_at\": \"2023-01-15\",\n    \"end_at\": \"2023-02-25\",\n    \"deposit_at\": \"2023-01-10\",\n    \"signed_at\": \"2022-07-09\",\n    \"program\": {{program_id}},\n    \"products\": {\n        \"ids\": [ {{api_product_id}} ]\n    },\n    \"host_country_state\": \"{{host_country_state_code}}\",\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"test@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"is_main\": true,\n            \"trip_cost\": 100\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"John\",\n        \"middle_name\": \"Doe\",\n        \"last_name\": \"John\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\"\n    },\n    \"destinations\": [\n        {\n            \"country_code\": \"US\"\n        }\n    ] \n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 16:48:51 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6388da3cf57124e1a8016b12\",\n        \"order_number\": \"1-DEC804D-3A6D1BC7C2E7\",\n        \"client_id\": 123,\n        \"status\": \"Pending\",\n        \"premium\": 20,\n        \"total\": 20,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2022-12-01T16:48:51.318000Z\",\n        \"ordered_at\": \"2022-12-01T16:48:51.318000Z\",\n        \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n        \"items\": [\n            {\n                \"id\": \"05725351-0ccb-4685-9648-407dba3e552d\",\n                \"product_id\": 1007,\n                \"program_id\": 10,\n                \"product_uuid\": \"b9add08c-39b4-4faf-bbc3-1ea8e6816859\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 9,\n                \"product_minor_id\": 137,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DEC9648-407DBA3E552D-1\",\n                \"start_at\": \"2022-12-05\",\n                \"end_at\": \"2022-12-15\",\n                \"deposit_at\": \"2022-07-09\",\n                \"details\": [\n                    {\n                        \"id\": \"a45185d7-c339-436c-a229-7baa114e7f12\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 20,\n                        \"product_package_id\": 83\n                    },\n                    {\n                        \"id\": \"a3495872-54ee-4935-a31f-b239ab7338db\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"fd3c725f-e243-4212-aabc-686a89251ace\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 20\n                    },\n                    {\n                        \"id\": \"cbdd1c56-e53f-402e-9095-60860a9e1b59\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 20\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1997-01-05\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"email\": \"mail@example.com\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": null\n                    }\n                ],\n                \"order\": {\n                    \"quote_id\": \"6388da3cf57124e1a8016b12\",\n                    \"currency_id\": \"USD\",\n                    \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1997-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"00467344912\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"ip_address\": \"172.31.44.223\"\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-01T16:48:51.318000Z\",\n                    \"ordered_at\": \"2022-12-01T16:48:51.318000Z\",\n                    \"order_number\": \"1-DEC804D-3A6D1BC7C2E7\",\n                    \"premium\": 20,\n                    \"total\": 20,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 123,\n                    \"updated_at\": \"2022-12-01T16:48:51.915000Z\",\n                    \"created_at\": \"2022-12-01T16:48:51.915000Z\",\n                    \"_id\": \"6388daf3a239763c8306f888\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"country_name\": null,\n            \"state_code\": \"OH\",\n            \"state_name\": null,\n            \"ip_address\": \"172.31.44.223\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        }\n    }\n}"},{"id":"f1aba3e4-0c8f-42b5-885b-214a159a21c1","name":"Filtering by Product Uuid","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"USD\",\n    \"start_at\": \"2023-01-15\",\n    \"end_at\": \"2023-02-25\",\n    \"deposit_at\": \"2023-01-10\",\n    \"signed_at\": \"2022-07-09\",\n    \"program\": {{program_id}},\n    \"products\": {\n        \"uuids\": [ {{product_uuid}} ]\n    },\n    \"host_country_state\": \"{{host_country_state_code}}\",\n    \"details\": [\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"test@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"is_main\": true,\n            \"trip_cost\": 100\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"John\",\n        \"middle_name\": \"Doe\",\n        \"last_name\": \"John\",\n        \"contact_number\": \"00467384321\",\n        \"email\": \"mail@example.com\"\n    },\n    \"destinations\": [\n        {\n            \"country_code\": \"US\"\n        }\n    ] \n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/condensed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 16:48:51 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6388da3cf57124e1a8016b12\",\n        \"order_number\": \"1-DEC804D-3A6D1BC7C2E7\",\n        \"client_id\": 123,\n        \"status\": \"Pending\",\n        \"premium\": 20,\n        \"total\": 20,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2022-12-01T16:48:51.318000Z\",\n        \"ordered_at\": \"2022-12-01T16:48:51.318000Z\",\n        \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n        \"items\": [\n            {\n                \"id\": \"05725351-0ccb-4685-9648-407dba3e552d\",\n                \"product_id\": 1007,\n                \"program_id\": 10,\n                \"product_uuid\": \"b9add08c-39b4-4faf-bbc3-1ea8e6816859\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 9,\n                \"product_minor_id\": 137,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DEC9648-407DBA3E552D-1\",\n                \"start_at\": \"2022-12-05\",\n                \"end_at\": \"2022-12-15\",\n                \"deposit_at\": \"2022-07-09\",\n                \"details\": [\n                    {\n                        \"id\": \"a45185d7-c339-436c-a229-7baa114e7f12\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 20,\n                        \"product_package_id\": 83\n                    },\n                    {\n                        \"id\": \"a3495872-54ee-4935-a31f-b239ab7338db\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"fd3c725f-e243-4212-aabc-686a89251ace\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 20\n                    },\n                    {\n                        \"id\": \"cbdd1c56-e53f-402e-9095-60860a9e1b59\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 20\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Johnson\",\n                    \"dob\": \"1997-01-05\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"email\": \"mail@example.com\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": null\n                    }\n                ],\n                \"order\": {\n                    \"quote_id\": \"6388da3cf57124e1a8016b12\",\n                    \"currency_id\": \"USD\",\n                    \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Johnson\",\n                        \"dob\": \"1997-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"00467344912\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"ip_address\": \"172.31.44.223\"\n                    },\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-01T16:48:51.318000Z\",\n                    \"ordered_at\": \"2022-12-01T16:48:51.318000Z\",\n                    \"order_number\": \"1-DEC804D-3A6D1BC7C2E7\",\n                    \"premium\": 20,\n                    \"total\": 20,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 123,\n                    \"updated_at\": \"2022-12-01T16:48:51.915000Z\",\n                    \"created_at\": \"2022-12-01T16:48:51.915000Z\",\n                    \"_id\": \"6388daf3a239763c8306f888\",\n                    \"meta\": null\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Johnson\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"country_name\": null,\n            \"state_code\": \"OH\",\n            \"state_name\": null,\n            \"ip_address\": \"172.31.44.223\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        }\n    }\n}"}],"_postman_id":"edc2ab59-df00-4b89-aa77-f877ff830fbb"},{"name":"Store Order Only","id":"d2ee7e02-fd74-43ef-9b5b-4cb6e5910395","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"quote_id\": \"{{quote_id}}\",\r\n    \"currency_id\": \"USD\", // required\r\n    \"sanction_search_id\": 0,\r\n    \"product_id\": {{api_product_id}}, // required\r\n    \"ordered_at\": \"2022-12-03\", // required\r\n    \"start_at\": \"2022-12-05\", // required\r\n    \"end_at\": \"2022-12-15\", // required\r\n    \"deposit_at\": \"2022-07-09\", // required\r\n    \"signed_at\": \"2022-07-09\",\r\n    \"details\": [\r\n        {\r\n            \"type\": \"deductible\",\r\n            \"detail\": \"deductible\",\r\n            \"amount\": 250\r\n        },\r\n        {\r\n            \"type\": \"package\",// required\r\n            \"product_package_id\": \"base_package\" // required\r\n        },\r\n        {\r\n            \"type\": \"level-condition\",\r\n            \"detail\": \"level\",\r\n            \"value\": \"40000\",\r\n            \"product_package_id\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_id\": \"wellness_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_id\": \"sick_package\"\r\n        }\r\n    ],\r\n    \"applicants\": [\r\n        {\r\n            \"first_name\": \"John\", // required\r\n            \"middle_name\": \"John\",\r\n            \"last_name\": \"Doe\", // required\r\n            \"dob\": \"1997-01-05\", // required\r\n            \"passport_number\": \"1233123123\",// required\r\n            \"member_id\": \"213-213-123\",// required\r\n            \"gender\": \"male\",// required\r\n            \"age_at_travel\": 35,\r\n            \"email\": \"mail@example.com\", // required\r\n            \"contact_number\": \"00467344912\",\r\n            \"address\": \"123 test street\",\r\n            \"city\": \"test city\",\r\n            \"post_code\": \"0\",// required\r\n            \"country_code\": \"US\",\r\n            \"state_code\": \"OH\",// required for Canada, Switzerland, and United States\r\n            \"is_main\": true, // required\r\n            \"trip_cost\": 1 // required\r\n        }\r\n    ],\r\n    \"insured\": [\r\n        {\r\n            \"type\": \"visitor\",\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"Jonathan\",\r\n            \"last_name\": \"Johnson\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\"\r\n        },\r\n        {\r\n            \"type\": \"dependant\",\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"Dependant\",\r\n            \"last_name\": \"Johnson\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\"\r\n        }\r\n    ],\r\n    \"meta\": {\r\n        \"passport_number\": \"1233123123\",\r\n        \"member_id\": \"213-213-123\",\r\n        \"arrival_date\": \"2023-10-01\",\r\n        \"passport_country\": \"GE\",\r\n        \"transaction_status\": \"C\",\r\n        \"rider\": false,\r\n        \"co_insurance\": 2,\r\n        \"policy_number\": \"1-DCGGDFS-S1\"\r\n    },\r\n    \"beneficiary\": {\r\n        \"first_name\": \"John\",\r\n        \"middle_name\": \"Doe\",\r\n        \"last_name\": \"John\",\r\n        \"contact_number\": \"00467384321\",\r\n        \"email\": \"mail@example.com\"\r\n    },\r\n    \"destinations\": [\r\n        {\r\n            \"country_code\": \"US\"  // required\r\n        }\r\n    ] \r\n}"},"url":"{{host_gateway}}/api/partner/orders/condensed/storage","description":"<p>This endpoint is used when you just want to store orders with insured details. It's very similar to the <code>Create Order</code> request with a few additional requirements, ordered_at, insured details (supports multiple) and additional meta fields:</p>\n<ul>\n<li><code>ordered_at:</code><ul>\n<li><code>The date the order was placed (Y-m-d).</code></li>\n</ul>\n</li>\n<li><code>insured</code>:<ul>\n<li>Can contain more than one entry and at least one is required.</li>\n<li>Requirements per insured entry:<ul>\n<li><code>type</code> - string, from list dependant, visitor</li>\n<li><code>first_name</code> : string, required</li>\n<li><code>middle_name</code>: string, optional</li>\n<li><code>last_name</code>: string, required</li>\n<li><code>dob</code>: date, format <code>Y-m-d</code>, required</li>\n<li><code>passport_number</code>: passport document number, required</li>\n<li><code>member_id</code>: string, required</li>\n<li><code>gender</code>: string, required, in list <code>male</code>, <code>female</code>, <code>other</code></li>\n</ul>\n</li>\n</ul>\n</li>\n<li><code>meta</code>:<ul>\n<li><code>passport_number</code>: passport number, required</li>\n<li><code>member_id</code>: string with member id, required</li>\n<li><code>arrival_date</code>: date, required, format Y-m-d</li>\n<li><code>passport_country</code>: country code, required</li>\n<li><code>transaction_status</code>: string representing transaction status</li>\n<li><code>rider</code>: boolean</li>\n<li><code>co_insurance</code>: int</li>\n<li><code>policy_number</code>: string</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","orders","condensed","storage"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"07920a11-025f-42fc-8521-74a6f9b2e3fe","name":"Store Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"quote_id\": \"{{quote_id}}\",\r\n    \"currency_id\": \"USD\",\r\n    \"sanction_search_id\": 0,\r\n    \"product_id\": {{api_product_id}},\r\n    \"start_at\": \"2022-12-05\",\r\n    \"end_at\": \"2022-12-15\",\r\n    \"deposit_at\": \"2022-07-09\",\r\n    \"signed_at\": \"2022-07-09\",\r\n    \"details\": [\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_id\": \"base_package\"\r\n        }\r\n    ],\r\n    \"applicants\": [\r\n        {\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"John\",\r\n            \"last_name\": \"Doe\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"age_at_travel\": 35,\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\",\r\n            \"email\": \"mail@example.com\",\r\n            \"contact_number\": \"00467344912\",\r\n            \"address\": \"123 test street\",\r\n            \"city\": \"test city\",\r\n            \"post_code\": \"0\",\r\n            \"country_code\": \"US\",\r\n            \"state_code\": \"OH\",\r\n            \"is_main\": true,\r\n            \"trip_cost\": 1\r\n        }\r\n    ],\r\n    \"insured\": [\r\n        {\r\n            \"type\": \"visitor\",\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"Jonathan\",\r\n            \"last_name\": \"Johnson\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\"\r\n        },\r\n        {\r\n            \"type\": \"dependant\",\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"Dependant\",\r\n            \"last_name\": \"Johnson\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\"\r\n        }\r\n    ],\r\n    \"meta\": {\r\n        \"passport_number\": \"1233123123\",\r\n        \"member_id\": \"213-213-123\",\r\n        \"arrival_date\": \"2023-10-01\",\r\n        \"passport_country\": \"GE\",\r\n        \"transaction_status\": \"C\",\r\n        \"rider\": false,\r\n        \"co_insurance\": 2,\r\n        \"policy_number\": \"1-DCGGDFS-S1\"\r\n    },\r\n    \"beneficiary\": {\r\n        \"first_name\": \"John\",\r\n        \"middle_name\": \"Doe\",\r\n        \"last_name\": \"John\",\r\n        \"contact_number\": \"00467384321\",\r\n        \"email\": \"mail@example.com\"\r\n    },\r\n    \"destinations\": [\r\n        {\r\n            \"country_code\": \"US\"\r\n        }\r\n    ] \r\n}"},"url":"{{host_gateway}}/api/partner/orders/condensed/storage"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 13:36:37 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6389f54c003ede81990e16d2\",\n        \"order_number\": \"1-DECBD51-4B937AA3A4E8\",\n        \"client_id\": 634,\n        \"status\": \"Pending\",\n        \"premium\": 0,\n        \"total\": 0,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2022-12-02T13:36:37.110000Z\",\n        \"ordered_at\": \"2022-12-02T13:36:37.110000Z\",\n        \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n        \"items\": [\n            {\n                \"id\": \"ed511c9d-b67b-48f9-adac-46789581ede2\",\n                \"product_id\": 1011,\n                \"program_id\": 14,\n                \"product_uuid\": \"763ea96e-4922-469b-9b63-48a243af96ff\",\n                \"product_name\": \"Product Name\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 13,\n                \"product_minor_id\": 141,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DECADAC-46789581EDE2-1\",\n                \"start_at\": \"2022-12-05\",\n                \"end_at\": \"2022-12-15\",\n                \"deposit_at\": \"2022-07-09\",\n                \"details\": [\n                    {\n                        \"id\": \"fa9d4f6d-dc1f-4d33-9da6-b8c20d9dbcfd\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 101\n                    },\n                    {\n                        \"id\": \"f42dd36b-b9a8-4383-961a-9c308bf0fc04\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"e9fc45cc-0e55-4b9a-aa65-e697e0851084\",\n                        \"type\": \"level\",\n                        \"detail\": \"20000\",\n                        \"amount\": 20000,\n                        \"value\": \"791\",\n                        \"product_package_id\": 101\n                    },\n                    {\n                        \"id\": \"e726755a-3db0-4a82-9baf-169d3d2c12a6\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"438d1348-e658-4fdb-8cce-5acb8c27ec6f\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 0\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"dob\": \"1997-01-05\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"Doe\",\n                    \"last_name\": \"John\",\n                    \"contact_number\": \"00467384321\",\n                    \"email\": \"mail@example.com\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": \"United States of America\"\n                    }\n                ],\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"6389f54c003ede81990e16d2\",\n                    \"currency_id\": \"USD\",\n                    \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"dob\": \"1997-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"00467344912\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"ip_address\": \"172.31.10.89\"\n                    },\n                    \"meta\": {\n                        \"passport_number\": \"1233123123\",\n                        \"member_id\": \"213-213-123\",\n                        \"arrival_date\": \"2023-10-01\",\n                        \"passport_country\": \"GE\",\n                        \"transaction_status\": \"C\",\n                        \"rider\": false,\n                        \"co_insurance\": 2,\n                        \"policy_number\": \"1-DCGGDFS-S1\"\n                    },\n                    \"insured\": [\n                        {\n                            \"type\": \"visitor\",\n                            \"first_name\": \"John\",\n                            \"middle_name\": \"Jonathan\",\n                            \"last_name\": \"Johnson\",\n                            \"dob\": \"1997-01-05\",\n                            \"passport_number\": \"1233123123\",\n                            \"member_id\": \"213-213-123\",\n                            \"gender\": \"male\",\n                            \"_id\": \"6389ff64532c0ce1590759f6\"\n                        },\n                        {\n                            \"type\": \"dependant\",\n                            \"first_name\": \"John\",\n                            \"middle_name\": \"Dependant\",\n                            \"last_name\": \"Johnson\",\n                            \"dob\": \"1997-01-05\",\n                            \"passport_number\": \"1233123123\",\n                            \"member_id\": \"213-213-123\",\n                            \"gender\": \"male\",\n                            \"_id\": \"6389ff64532c0ce1590759f7\"\n                        }\n                    ],\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-02T13:36:37.110000Z\",\n                    \"ordered_at\": \"2022-12-02T13:36:37.110000Z\",\n                    \"order_number\": \"1-DECBD51-4B937AA3A4E8\",\n                    \"premium\": 0,\n                    \"total\": 0,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 634,\n                    \"updated_at\": \"2022-12-02T13:36:37.795000Z\",\n                    \"created_at\": \"2022-12-02T13:36:37.795000Z\",\n                    \"_id\": \"6389ff65532c0ce1590759fb\"\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"ip_address\": \"172.31.10.89\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        },\n        \"meta\": {\n            \"passport_number\": \"1233123123\",\n            \"member_id\": \"213-213-123\",\n            \"arrival_date\": \"2023-10-01\",\n            \"passport_country\": \"GE\",\n            \"transaction_status\": \"C\",\n            \"rider\": false,\n            \"co_insurance\": 2,\n            \"policy_number\": \"1-DCGGDFS-S1\"\n        }\n    }\n}"},{"id":"85aefb3f-31a1-4f79-b307-d0ea9c33b2f0","name":"With Multiple Packages","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"quote_id\": \"{{quote_id}}\",\r\n    \"currency_id\": \"USD\",\r\n    \"sanction_search_id\": 0,\r\n    \"product_id\": {{api_product_id}},\r\n    \"start_at\": \"2022-12-05\",\r\n    \"end_at\": \"2022-12-15\",\r\n    \"deposit_at\": \"2022-07-09\",\r\n    \"signed_at\": \"2022-07-09\",\r\n    \"details\": [\r\n        {\r\n            \"type\": \"deductible\",\r\n            \"detail\": \"deductible\",\r\n            \"amount\": 250\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_id\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_id\": \"wellness_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_id\": \"sick_package\"\r\n        }\r\n    ],\r\n    \"applicants\": [\r\n        {\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"John\",\r\n            \"last_name\": \"Doe\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"age_at_travel\": 35,\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\",\r\n            \"email\": \"mail@example.com\",\r\n            \"contact_number\": \"00467344912\",\r\n            \"address\": \"123 test street\",\r\n            \"city\": \"test city\",\r\n            \"post_code\": \"0\",\r\n            \"country_code\": \"US\",\r\n            \"state_code\": \"OH\",\r\n            \"is_main\": true,\r\n            \"trip_cost\": 1\r\n        }\r\n    ],\r\n    \"insured\": [\r\n        {\r\n            \"type\": \"visitor\",\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"Jonathan\",\r\n            \"last_name\": \"Johnson\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\"\r\n        },\r\n        {\r\n            \"type\": \"dependant\",\r\n            \"first_name\": \"John\",\r\n            \"middle_name\": \"Dependant\",\r\n            \"last_name\": \"Johnson\",\r\n            \"dob\": \"1997-01-05\",\r\n            \"passport_number\": \"1233123123\",\r\n            \"member_id\": \"213-213-123\",\r\n            \"gender\": \"male\"\r\n        }\r\n    ],\r\n    \"meta\": {\r\n        \"passport_number\": \"1233123123\",\r\n        \"member_id\": \"213-213-123\",\r\n        \"arrival_date\": \"2023-10-01\",\r\n        \"passport_country\": \"GE\",\r\n        \"transaction_status\": \"C\",\r\n        \"rider\": false,\r\n        \"co_insurance\": 2,\r\n        \"policy_number\": \"1-DCGGDFS-S1\"\r\n    },\r\n    \"beneficiary\": {\r\n        \"first_name\": \"John\",\r\n        \"middle_name\": \"Doe\",\r\n        \"last_name\": \"John\",\r\n        \"contact_number\": \"00467384321\",\r\n        \"email\": \"mail@example.com\"\r\n    },\r\n    \"destinations\": [\r\n        {\r\n            \"country_code\": \"US\"\r\n        }\r\n    ] \r\n}"},"url":"{{host_gateway}}/api/partner/orders/condensed/storage"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 13:41:18 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schema_version\": 1,\n        \"site_id\": 1,\n        \"quote_id\": \"6389ad7206a90fe6510fd0f2\",\n        \"order_number\": \"1-DEC9AD1-FE354AE7FB5A\",\n        \"client_id\": 634,\n        \"status\": \"Pending\",\n        \"premium\": 0,\n        \"total\": 0,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2022-12-02T13:41:18.076000Z\",\n        \"ordered_at\": \"2022-12-02T13:41:18.076000Z\",\n        \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n        \"items\": [\n            {\n                \"id\": \"0990296b-4773-4d7d-9b82-2efe13867c1a\",\n                \"product_id\": 1011,\n                \"program_id\": 14,\n                \"product_uuid\": \"763ea96e-4922-469b-9b63-48a243af96ff\",\n                \"product_name\": \"Product\",\n                \"sanction_search_id\": 0,\n                \"product_major_id\": 13,\n                \"product_minor_id\": 141,\n                \"policy_file_id\": null,\n                \"policy_number\": \"1-DEC9B82-2EFE13867C1A-1\",\n                \"start_at\": \"2022-12-05\",\n                \"end_at\": \"2022-12-15\",\n                \"deposit_at\": \"2022-07-09\",\n                \"details\": [\n                    {\n                        \"id\": \"eab2a2f9-9a2a-4a61-af07-b6cdb284407d\",\n                        \"type\": \"deductible\",\n                        \"detail\": \"deductible\",\n                        \"amount\": 250\n                    },\n                    {\n                        \"id\": \"f7e5bec3-e5dd-4da9-89e8-8167953c4fe2\",\n                        \"type\": \"package\",\n                        \"detail\": \"Base Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 101\n                    },\n                    {\n                        \"id\": \"9948e524-ba44-4262-9ee6-c7344ebecc09\",\n                        \"type\": \"package\",\n                        \"detail\": \"Wellness Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 102\n                    },\n                    {\n                        \"id\": \"e3cc392f-77eb-40f5-912a-b53089d94dd8\",\n                        \"type\": \"package\",\n                        \"detail\": \"Sick Package\",\n                        \"amount\": 0,\n                        \"product_package_id\": 103\n                    },\n                    {\n                        \"id\": \"109486e1-1b4d-473d-b7bf-88571f3643d6\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"ebbae8a1-8bb2-4f46-b3da-b12dc555cc0b\",\n                        \"type\": \"level\",\n                        \"detail\": \"20000\",\n                        \"amount\": 20000,\n                        \"value\": \"791\",\n                        \"product_package_id\": 101\n                    },\n                    {\n                        \"id\": \"aed57c4c-13c6-4a15-a3af-1a3d24427714\",\n                        \"type\": \"level\",\n                        \"detail\": \"20000\",\n                        \"amount\": 20000,\n                        \"value\": \"792\",\n                        \"product_package_id\": 102\n                    },\n                    {\n                        \"id\": \"f776f646-42e4-4571-9da2-f1b52494dd18\",\n                        \"type\": \"level\",\n                        \"detail\": \"20000\",\n                        \"amount\": 20000,\n                        \"value\": \"793\",\n                        \"product_package_id\": 103\n                    },\n                    {\n                        \"id\": \"fa834735-813c-4966-8ebe-6b6c48089d27\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 0\n                    },\n                    {\n                        \"id\": \"9ff630aa-ba70-4796-b890-b9828126c190\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 0\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"dob\": \"1997-01-05\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"John\",\n                    \"middle_name\": \"Doe\",\n                    \"last_name\": \"John\",\n                    \"contact_number\": \"00467384321\",\n                    \"email\": \"mail@example.com\"\n                },\n                \"destinations\": [\n                    {\n                        \"country_code\": \"US\",\n                        \"country_name\": \"United States of America\"\n                    }\n                ],\n                \"is_main\": true,\n                \"order\": {\n                    \"quote_id\": \"6389ad7206a90fe6510fd0f2\",\n                    \"currency_id\": \"USD\",\n                    \"signed_at\": \"2022-07-09T00:00:00.000000Z\",\n                    \"site_id\": 1,\n                    \"applicant\": {\n                        \"first_name\": \"John\",\n                        \"middle_name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"dob\": \"1997-01-05\",\n                        \"age_at_travel\": 35,\n                        \"email\": \"mail@example.com\",\n                        \"contact_number\": \"00467344912\",\n                        \"address\": \"123 test street\",\n                        \"city\": \"test city\",\n                        \"post_code\": \"0\",\n                        \"country_code\": \"US\",\n                        \"state_code\": \"OH\",\n                        \"ip_address\": \"172.31.10.89\"\n                    },\n                    \"meta\": {\n                        \"passport_number\": \"1233123123\",\n                        \"member_id\": \"213-213-123\",\n                        \"arrival_date\": \"2023-10-01\",\n                        \"passport_country\": \"GE\",\n                        \"transaction_status\": \"C\",\n                        \"rider\": false,\n                        \"co_insurance\": 2,\n                        \"policy_number\": \"1-DCGGDFS-S1\"\n                    },\n                    \"insured\": [\n                        {\n                            \"type\": \"visitor\",\n                            \"first_name\": \"John\",\n                            \"middle_name\": \"Jonathan\",\n                            \"last_name\": \"Johnson\",\n                            \"dob\": \"1997-01-05\",\n                            \"passport_number\": \"1233123123\",\n                            \"member_id\": \"213-213-123\",\n                            \"gender\": \"male\",\n                            \"_id\": \"638a007d74e6272fe603c609\"\n                        },\n                        {\n                            \"type\": \"dependant\",\n                            \"first_name\": \"John\",\n                            \"middle_name\": \"Dependant\",\n                            \"last_name\": \"Johnson\",\n                            \"dob\": \"1997-01-05\",\n                            \"passport_number\": \"1233123123\",\n                            \"member_id\": \"213-213-123\",\n                            \"gender\": \"male\",\n                            \"_id\": \"638a007d74e6272fe603c60a\"\n                        }\n                    ],\n                    \"schema_version\": 1,\n                    \"document_version\": 1,\n                    \"status\": \"Pending\",\n                    \"status_updated_at\": \"2022-12-02T13:41:18.076000Z\",\n                    \"ordered_at\": \"2022-12-02T13:41:18.076000Z\",\n                    \"order_number\": \"1-DEC9AD1-FE354AE7FB5A\",\n                    \"premium\": 0,\n                    \"total\": 0,\n                    \"fees\": 0,\n                    \"tax\": 0,\n                    \"refund_amount\": 0,\n                    \"is_refunded\": false,\n                    \"tax_rate\": 0,\n                    \"client_id\": 634,\n                    \"updated_at\": \"2022-12-02T13:41:18.596000Z\",\n                    \"created_at\": \"2022-12-02T13:41:18.596000Z\",\n                    \"_id\": \"638a007e74e6272fe603c610\"\n                },\n                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"John\",\n            \"middle_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"dob\": \"1997-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"mail@example.com\",\n            \"contact_number\": \"00467344912\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"ip_address\": \"172.31.10.89\",\n            \"signature\": null\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0\n        },\n        \"meta\": {\n            \"passport_number\": \"1233123123\",\n            \"member_id\": \"213-213-123\",\n            \"arrival_date\": \"2023-10-01\",\n            \"passport_country\": \"GE\",\n            \"transaction_status\": \"C\",\n            \"rider\": false,\n            \"co_insurance\": 2,\n            \"policy_number\": \"1-DCGGDFS-S1\"\n        }\n    }\n}"}],"_postman_id":"d2ee7e02-fd74-43ef-9b5b-4cb6e5910395"}],"id":"9ae0da90-c1e9-4b56-ac1e-eec954b0c736","_postman_id":"9ae0da90-c1e9-4b56-ac1e-eec954b0c736","description":"","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Additional File","item":[{"name":"Client Order Policy Files","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Policy Files Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"id":"a485fe5b-d2c7-4517-9e4f-83bb672b6149"}}],"id":"86a49ab2-bb70-44c8-9629-104525b53c96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/client/orders/{{order_number}}/policies/{{policy_number}}/files","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","client","orders","{{order_number}}","policies","{{policy_number}}","files"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"c6680dcc-d899-4112-bde1-4b4ef6726ea9","name":"Order Policy Files","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host_gateway}}/api/partner/orders/{{order_number}}/policies/{{policy_number}}/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.21.1"},{"key":"Date","value":"Thu, 09 Jun 2022 13:21:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/8.1.4"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"for\": \"policy\",\n            \"name\": \"Policy Document\",\n            \"url\": \"http://bf-file-ms.lcl/api/policies/policy-6-JUN12322-12-6b78156d-a05f-4a01-b062-79ab0cf6c958/download\"\n        },\n        {\n            \"id\": 1,\n            \"for\": \"confirmation_of_coverage\",\n            \"name\": \"Confirmation Of Coverage Document\",\n            \"url\": \"http://bf-file-ms.lcl/api/policies/confirmation_of_coverage-6-JUN12322-12-f9ec8caa-09ad-4edd-a004-48c0a3c6e58f/download\"\n        }\n    ]\n}"}],"_postman_id":"86a49ab2-bb70-44c8-9629-104525b53c96"}],"id":"2a302c3e-9be3-4c59-85fd-8a27a3d4b30a","_postman_id":"2a302c3e-9be3-4c59-85fd-8a27a3d4b30a","description":"","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Additional Related Data","item":[{"name":"Country Product Currency Exception Show","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Countries Request Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"id":"e48d5916-43e8-48a7-b104-de78d7b7703e"}}],"id":"72ebce12-a6b7-4b72-824e-5af9334d686a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{host_gateway}}/api/product/{{product_id}}/country-product-currency-exception/country/{{country_id}}/currency/{{currency_id}}","description":"<p>Although a product may be allowed to sell in all currencies, certain countries may require restrictions to use a specific currency over the rest.</p>\n<p>Use this to check if a specific currency must be used for the supplied country and product.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n<tr>\n<td>currency_id</td>\n<td>ISO currency code</td>\n<td>USD</td>\n</tr>\n<tr>\n<td>country_id</td>\n<td>ISO country code</td>\n<td>US</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will an object. If there is an exception for the parameters supplied you will receive below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country_id</td>\n<td>Country ID supplied</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>Product ID supplied</td>\n</tr>\n<tr>\n<td>currency_id</td>\n<td>Currency ID supplied</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","product","{{product_id}}","country-product-currency-exception","country","{{country_id}}","currency","{{currency_id}}"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"0d5e68ef-9eb4-4e26-9d84-12502fe3dfeb","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/product/{{product_id}}}/country-product-currency-exception/country/{{country_id}}/currency/{{currency_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 11:44:30 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"country_id\": \"US\",\n        \"product_id\": 12,\n        \"currency_id\": \"USD\"\n    }\n}"}],"_postman_id":"72ebce12-a6b7-4b72-824e-5af9334d686a"},{"name":"Country Product Currency Exception Index","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Countries Request Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"id":"00e126cd-1017-4868-96b1-6d913d8b405f"}}],"id":"a17007d7-f2f2-417c-abf5-71f0bcdb3dac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{host_gateway}}/api/product/{{product_id}}/country-product-currency-exception","description":"<p>Although a product may be allowed to sell in all currencies, certain countries may require restrictions to use a specific currency over the rest.</p>\n<p>Use this to receive the list of countries &amp; their currency exceptions, which must be used when creating quotes and orders with the supplied country.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will be an array of objects. Each object will have the below parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country_id</td>\n<td>The country ID which the currency must be applied to as an exception.</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>The product ID supplied.</td>\n</tr>\n<tr>\n<td>currency_id</td>\n<td>The currency ID which must be applied to the country as an exception</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","product","{{product_id}}","country-product-currency-exception"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"802e3516-b341-48ac-b4c6-b334674376b5","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/product/{{product_id}}/country-product-currency-exception"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 11:44:30 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"country_id\": \"US\",\n            \"product_id\": 12,\n            \"currency_id\": \"GBP\"\n        }\n    ]\n}"}],"_postman_id":"a17007d7-f2f2-417c-abf5-71f0bcdb3dac"},{"name":"Product Packages State","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Product Packages Request Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"2123d85c-1018-40fe-8731-2c73294552b7"}}],"id":"37c6ecaa-2cc4-42cd-87df-58f26432c2c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-country/{{host_country_id}}/host-country-state/{{host_country_state_id}}/packages","description":"<p>Get a list of packages available for this product in this country state. Packages contain benefits.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n<tr>\n<td>host_country_id</td>\n<td>Host country id. See \"Host Country Index\" section.</td>\n<td>12</td>\n</tr>\n<tr>\n<td>host_country_state_id</td>\n<td>Host country state id. See \"Host Country State Index\" section.</td>\n<td>50</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will be an array of objects. Each object will have the below parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Package ID, will be used downstream for pricing, validation, etc.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Human readable package name.</td>\n<td>\"Base Package\"</td>\n</tr>\n<tr>\n<td>coverages</td>\n<td>Coverages associated with the package, see \"Coverages\" section below.</td>\n<td>[  <br />{  <br />\"id\": 79,  <br />\"benefit_type\": {}  <br />},  <br />]</td>\n</tr>\n<tr>\n<td>validations</td>\n<td>Validations associated with the package, see \"Validations\" section below.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"coverages\">Coverages</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Coverage ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>benefit_type</td>\n<td>Benefit type information related to the coverage, see \"Benefit Type\" section below.</td>\n<td></td>\n</tr>\n<tr>\n<td>limits</td>\n<td>Limit information realted to the coverage, see \"Limits\" section below</td>\n<td>[]</td>\n</tr>\n<tr>\n<td>has_deductible</td>\n<td>Indicating if coverage has deductible</td>\n<td>true / false</td>\n</tr>\n<tr>\n<td>deductible</td>\n<td>Amount of deductible related to the coverage</td>\n<td>50</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"benefit-type\">Benefit Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Benefit type ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Human readable benefit name.</td>\n<td>\"Trip Cancellation\"</td>\n</tr>\n<tr>\n<td>key</td>\n<td>Useful for creating descriptions across packages without worrying about versioning or name changes.</td>\n<td>\"cancellation\"</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"limits\">Limits</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>limit ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td>value</td>\n<td>Value of the coverage limits</td>\n<td>500</td>\n</tr>\n<tr>\n<td>value_type</td>\n<td>Value type information. See \"Value Type\" section below.</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>Coverage limit type information. See \"Coverage limit type \" section below</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"value-type\">Value Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Coverage limit Value type id</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Value type of the coverage limit</td>\n<td>\"flat\"</td>\n</tr>\n<tr>\n<td>symbol</td>\n<td>Symbol representation of the value</td>\n<td>\"$\"</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"coverage-limit-type\">Coverage Limit Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Coverage limit type id</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the coverage limit type</td>\n<td>\"day\"</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","host-country","{{host_country_id}}","host-country-state","{{host_country_state_id}}","packages"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"a70d5156-f28c-4c6e-b238-9008cc38af65","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-country/{{v_host_country_id}}/host-country-state/{{v_host_country_state_id}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 13:53:03 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"56"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 76,\n            \"alias\": \"base_package\",\n            \"name\": \"Base Package\",\n            \"coverages\": [\n                {\n                    \"id\": 530,\n                    \"benefit_type\": {\n                        \"id\": 49,\n                        \"benefit_type_id\": 46,\n                        \"name\": \"Tournament Cancellation\",\n                        \"description\": \"Tournament Cancellation\",\n                        \"key\": \"event_cancellation\"\n                    },\n                    \"limits\": [],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [],\n            \"attributes\": []\n        }\n    ]\n}"},{"id":"b3fffb1c-f193-47ba-8c68-f39705c92a74","name":"Australian Generic With Levels","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-country/{{host_country_id}}/host-country-state/{{host_country_state_id}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 12:38:42 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1686,\n            \"alias\": \"travel_medical_package\",\n            \"name\": \"Travel Medical Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2774,\n                    \"benefit_type\": {\n                        \"id\": 15,\n                        \"benefit_type_id\": 22,\n                        \"name\": \"Emergency Medical and additional expenses\",\n                        \"description\": \"Emergency Medical and additional expenses\",\n                        \"key\": \"travel_medical\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2763,\n                            \"value\": 2000000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2775,\n                    \"benefit_type\": {\n                        \"id\": 16,\n                        \"benefit_type_id\": 47,\n                        \"name\": \"Funeral Expenses abroad\",\n                        \"description\": \"Funeral Expenses abroad\",\n                        \"key\": \"funeral_expense_abroad\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2764,\n                            \"value\": 20000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2776,\n                    \"benefit_type\": {\n                        \"id\": 17,\n                        \"benefit_type_id\": 45,\n                        \"name\": \"Hospital benefit and confinement\",\n                        \"description\": \"Hospital benefit and confinement\",\n                        \"key\": \"hospital_room_and_board\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2765,\n                            \"value\": 1000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [\n                {\n                    \"id\": 3271,\n                    \"product_package_validation_type\": {\n                        \"id\": 1,\n                        \"name\": \"Is Required\",\n                        \"description\": \"The package is required.\"\n                    },\n                    \"value\": \"1\"\n                }\n            ],\n            \"levels\": [\n                {\n                    \"id\": 9865,\n                    \"level\": \"Unlimited\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": null\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1687,\n            \"alias\": \"trip_interruption_package\",\n            \"name\": \"Trip Interruption Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2777,\n                    \"benefit_type\": {\n                        \"id\": 18,\n                        \"benefit_type_id\": 3,\n                        \"name\": \"Australian Trip Interruption\",\n                        \"description\": \"Australian Trip Interruption\",\n                        \"key\": \"trip_interruption\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2766,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2778,\n                    \"benefit_type\": {\n                        \"id\": 19,\n                        \"benefit_type_id\": 1,\n                        \"name\": \"Australian Trip Cancellation\",\n                        \"description\": \"Australian Trip Cancellation\",\n                        \"key\": \"trip_cancellation\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2767,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2779,\n                    \"benefit_type\": {\n                        \"id\": 20,\n                        \"benefit_type_id\": 48,\n                        \"name\": \"Airfare Reimbursement\",\n                        \"description\": \"Airfare Reimbursement\",\n                        \"key\": \"airfare_reimbursement\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2768,\n                            \"value\": 2500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2780,\n                    \"benefit_type\": {\n                        \"id\": 21,\n                        \"benefit_type_id\": 28,\n                        \"name\": \"Travel resumption\",\n                        \"description\": \"Travel resumption\",\n                        \"key\": \"resumption_of_trip\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2769,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2781,\n                    \"benefit_type\": {\n                        \"id\": 22,\n                        \"benefit_type_id\": 49,\n                        \"name\": \"Hijacking\",\n                        \"description\": \"Hijacking\",\n                        \"key\": \"hijacking\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2770,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9866,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9867,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9868,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9869,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9870,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9871,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9872,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9873,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                },\n                {\n                    \"id\": 9874,\n                    \"level\": \"15000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 15000\n                },\n                {\n                    \"id\": 9875,\n                    \"level\": \"20000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 20000\n                },\n                {\n                    \"id\": 9876,\n                    \"level\": \"30000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 30000\n                },\n                {\n                    \"id\": 9877,\n                    \"level\": \"40000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 40000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1688,\n            \"alias\": \"travel_delay_package\",\n            \"name\": \"Travel Delay Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2782,\n                    \"benefit_type\": {\n                        \"id\": 23,\n                        \"benefit_type_id\": 6,\n                        \"name\": \"Australian Trip Delay\",\n                        \"description\": \"Australian Trip Delay\",\n                        \"key\": \"trip_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2771,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9878,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1689,\n            \"alias\": \"personal_accident_package\",\n            \"name\": \"Personal Accident Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2783,\n                    \"benefit_type\": {\n                        \"id\": 24,\n                        \"benefit_type_id\": 25,\n                        \"name\": \"Australian ADD\",\n                        \"description\": \"Australian ADD\",\n                        \"key\": \"non_flight_accidental_death_and_dismemberment\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2772,\n                            \"value\": 25000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9879,\n                    \"level\": \"25000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 25000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1690,\n            \"alias\": \"personal_liability_package\",\n            \"name\": \"Personal Liability Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2784,\n                    \"benefit_type\": {\n                        \"id\": 25,\n                        \"benefit_type_id\": 50,\n                        \"name\": \"Australian Personal Liability\",\n                        \"description\": \"Australian Personal Liability\",\n                        \"key\": \"personal_liability\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2773,\n                            \"value\": 2500000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9880,\n                    \"level\": \"2500000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2500000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1691,\n            \"alias\": \"baggage_package\",\n            \"name\": \"Baggage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2785,\n                    \"benefit_type\": {\n                        \"id\": 26,\n                        \"benefit_type_id\": 14,\n                        \"name\": \"Luggage and personal effects\",\n                        \"description\": \"Luggage and personal effects\",\n                        \"key\": \"baggage_and_personal_effects\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2774,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2786,\n                    \"benefit_type\": {\n                        \"id\": 27,\n                        \"benefit_type_id\": 15,\n                        \"name\": \"Delayed Baggage allowance\",\n                        \"description\": \"Delayed Baggage allowance\",\n                        \"key\": \"baggage_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2775,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9881,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9882,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9883,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9884,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9885,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9886,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9887,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9888,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1692,\n            \"alias\": \"rental_vehicle_damage_package\",\n            \"name\": \"Rental Vehicle Damage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2787,\n                    \"benefit_type\": {\n                        \"id\": 28,\n                        \"benefit_type_id\": 51,\n                        \"name\": \"Australian Vehicle\",\n                        \"description\": \"Australian Vehicle\",\n                        \"key\": \"vehicle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2776,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9889,\n                    \"level\": \"1\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 1\n                },\n                {\n                    \"id\": 9890,\n                    \"level\": \"2\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 2\n                },\n                {\n                    \"id\": 9891,\n                    \"level\": \"3\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 3\n                },\n                {\n                    \"id\": 9892,\n                    \"level\": \"4\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 4\n                },\n                {\n                    \"id\": 9893,\n                    \"level\": \"5\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 5\n                },\n                {\n                    \"id\": 9894,\n                    \"level\": \"6\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 6\n                },\n                {\n                    \"id\": 9895,\n                    \"level\": \"7\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 7\n                },\n                {\n                    \"id\": 9896,\n                    \"level\": \"8\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 8\n                },\n                {\n                    \"id\": 9897,\n                    \"level\": \"9\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 9\n                },\n                {\n                    \"id\": 9898,\n                    \"level\": \"10\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 10\n                },\n                {\n                    \"id\": 9899,\n                    \"level\": \"11\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 11\n                },\n                {\n                    \"id\": 9900,\n                    \"level\": \"12\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 12\n                },\n                {\n                    \"id\": 9901,\n                    \"level\": \"13\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 13\n                },\n                {\n                    \"id\": 9902,\n                    \"level\": \"14\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 14\n                },\n                {\n                    \"id\": 9903,\n                    \"level\": \"15\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 15\n                },\n                {\n                    \"id\": 9904,\n                    \"level\": \"16\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 16\n                },\n                {\n                    \"id\": 9905,\n                    \"level\": \"17\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 17\n                },\n                {\n                    \"id\": 9906,\n                    \"level\": \"18\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 18\n                },\n                {\n                    \"id\": 9907,\n                    \"level\": \"19\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 19\n                },\n                {\n                    \"id\": 9908,\n                    \"level\": \"20\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 20\n                },\n                {\n                    \"id\": 9909,\n                    \"level\": \"21\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 21\n                },\n                {\n                    \"id\": 9910,\n                    \"level\": \"22\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 22\n                },\n                {\n                    \"id\": 9911,\n                    \"level\": \"23\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 23\n                },\n                {\n                    \"id\": 9912,\n                    \"level\": \"24\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 24\n                },\n                {\n                    \"id\": 9913,\n                    \"level\": \"25\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 25\n                },\n                {\n                    \"id\": 9914,\n                    \"level\": \"26\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 26\n                },\n                {\n                    \"id\": 9915,\n                    \"level\": \"27\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 27\n                },\n                {\n                    \"id\": 9916,\n                    \"level\": \"28\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 28\n                },\n                {\n                    \"id\": 9917,\n                    \"level\": \"29\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 29\n                },\n                {\n                    \"id\": 9918,\n                    \"level\": \"30\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 30\n                },\n                {\n                    \"id\": 9919,\n                    \"level\": \"31\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 31\n                },\n                {\n                    \"id\": 9920,\n                    \"level\": \"32\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 32\n                },\n                {\n                    \"id\": 9921,\n                    \"level\": \"33\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 33\n                },\n                {\n                    \"id\": 9922,\n                    \"level\": \"34\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 34\n                },\n                {\n                    \"id\": 9923,\n                    \"level\": \"35\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 35\n                },\n                {\n                    \"id\": 9924,\n                    \"level\": \"36\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 36\n                },\n                {\n                    \"id\": 9925,\n                    \"level\": \"37\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 37\n                },\n                {\n                    \"id\": 9926,\n                    \"level\": \"38\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 38\n                },\n                {\n                    \"id\": 9927,\n                    \"level\": \"39\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 39\n                },\n                {\n                    \"id\": 9928,\n                    \"level\": \"40\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 40\n                },\n                {\n                    \"id\": 9929,\n                    \"level\": \"41\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 41\n                },\n                {\n                    \"id\": 9930,\n                    \"level\": \"42\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 42\n                },\n                {\n                    \"id\": 9931,\n                    \"level\": \"43\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 43\n                },\n                {\n                    \"id\": 9932,\n                    \"level\": \"44\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 44\n                },\n                {\n                    \"id\": 9933,\n                    \"level\": \"45\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 45\n                },\n                {\n                    \"id\": 9934,\n                    \"level\": \"46\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 46\n                },\n                {\n                    \"id\": 9935,\n                    \"level\": \"47\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 47\n                },\n                {\n                    \"id\": 9936,\n                    \"level\": \"48\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 48\n                },\n                {\n                    \"id\": 9937,\n                    \"level\": \"49\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 49\n                },\n                {\n                    \"id\": 9938,\n                    \"level\": \"50\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 50\n                },\n                {\n                    \"id\": 9939,\n                    \"level\": \"51\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 51\n                },\n                {\n                    \"id\": 9940,\n                    \"level\": \"52\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 52\n                },\n                {\n                    \"id\": 9941,\n                    \"level\": \"53\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 53\n                },\n                {\n                    \"id\": 9942,\n                    \"level\": \"54\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 54\n                },\n                {\n                    \"id\": 9943,\n                    \"level\": \"55\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 55\n                },\n                {\n                    \"id\": 9944,\n                    \"level\": \"56\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 56\n                },\n                {\n                    \"id\": 9945,\n                    \"level\": \"57\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 57\n                },\n                {\n                    \"id\": 9946,\n                    \"level\": \"58\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 58\n                },\n                {\n                    \"id\": 9947,\n                    \"level\": \"59\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 59\n                },\n                {\n                    \"id\": 9948,\n                    \"level\": \"60\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 60\n                },\n                {\n                    \"id\": 9949,\n                    \"level\": \"61\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 61\n                },\n                {\n                    \"id\": 9950,\n                    \"level\": \"62\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 62\n                },\n                {\n                    \"id\": 9951,\n                    \"level\": \"63\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 63\n                },\n                {\n                    \"id\": 9952,\n                    \"level\": \"64\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 64\n                },\n                {\n                    \"id\": 9953,\n                    \"level\": \"65\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 65\n                },\n                {\n                    \"id\": 9954,\n                    \"level\": \"66\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 66\n                },\n                {\n                    \"id\": 9955,\n                    \"level\": \"67\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 67\n                },\n                {\n                    \"id\": 9956,\n                    \"level\": \"68\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 68\n                },\n                {\n                    \"id\": 9957,\n                    \"level\": \"69\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 69\n                },\n                {\n                    \"id\": 9958,\n                    \"level\": \"70\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 70\n                },\n                {\n                    \"id\": 9959,\n                    \"level\": \"71\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 71\n                },\n                {\n                    \"id\": 9960,\n                    \"level\": \"72\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 72\n                },\n                {\n                    \"id\": 9961,\n                    \"level\": \"73\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 73\n                },\n                {\n                    \"id\": 9962,\n                    \"level\": \"74\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 74\n                },\n                {\n                    \"id\": 9963,\n                    \"level\": \"75\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 75\n                },\n                {\n                    \"id\": 9964,\n                    \"level\": \"76\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 76\n                },\n                {\n                    \"id\": 9965,\n                    \"level\": \"77\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 77\n                },\n                {\n                    \"id\": 9966,\n                    \"level\": \"78\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 78\n                },\n                {\n                    \"id\": 9967,\n                    \"level\": \"79\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 79\n                },\n                {\n                    \"id\": 9968,\n                    \"level\": \"80\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 80\n                },\n                {\n                    \"id\": 9969,\n                    \"level\": \"81\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 81\n                },\n                {\n                    \"id\": 9970,\n                    \"level\": \"82\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 82\n                },\n                {\n                    \"id\": 9971,\n                    \"level\": \"83\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 83\n                },\n                {\n                    \"id\": 9972,\n                    \"level\": \"84\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 84\n                },\n                {\n                    \"id\": 9973,\n                    \"level\": \"85\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 85\n                },\n                {\n                    \"id\": 9974,\n                    \"level\": \"86\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 86\n                },\n                {\n                    \"id\": 9975,\n                    \"level\": \"87\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 87\n                },\n                {\n                    \"id\": 9976,\n                    \"level\": \"88\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 88\n                },\n                {\n                    \"id\": 9977,\n                    \"level\": \"89\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 89\n                },\n                {\n                    \"id\": 9978,\n                    \"level\": \"90\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 90\n                },\n                {\n                    \"id\": 9979,\n                    \"level\": \"91\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 91\n                },\n                {\n                    \"id\": 9980,\n                    \"level\": \"92\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 92\n                },\n                {\n                    \"id\": 9981,\n                    \"level\": \"93\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 93\n                },\n                {\n                    \"id\": 9982,\n                    \"level\": \"94\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 94\n                },\n                {\n                    \"id\": 9983,\n                    \"level\": \"95\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 95\n                },\n                {\n                    \"id\": 9984,\n                    \"level\": \"96\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 96\n                },\n                {\n                    \"id\": 9985,\n                    \"level\": \"97\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 97\n                },\n                {\n                    \"id\": 9986,\n                    \"level\": \"98\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 98\n                },\n                {\n                    \"id\": 9987,\n                    \"level\": \"99\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 99\n                },\n                {\n                    \"id\": 9988,\n                    \"level\": \"100\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 100\n                },\n                {\n                    \"id\": 9989,\n                    \"level\": \"101\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 101\n                },\n                {\n                    \"id\": 9990,\n                    \"level\": \"102\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 102\n                },\n                {\n                    \"id\": 9991,\n                    \"level\": \"103\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 103\n                },\n                {\n                    \"id\": 9992,\n                    \"level\": \"104\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 104\n                },\n                {\n                    \"id\": 9993,\n                    \"level\": \"105\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 105\n                },\n                {\n                    \"id\": 9994,\n                    \"level\": \"106\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 106\n                },\n                {\n                    \"id\": 9995,\n                    \"level\": \"107\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 107\n                },\n                {\n                    \"id\": 9996,\n                    \"level\": \"108\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 108\n                },\n                {\n                    \"id\": 9997,\n                    \"level\": \"109\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 109\n                },\n                {\n                    \"id\": 9998,\n                    \"level\": \"110\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 110\n                },\n                {\n                    \"id\": 9999,\n                    \"level\": \"111\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 111\n                },\n                {\n                    \"id\": 10000,\n                    \"level\": \"112\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 112\n                },\n                {\n                    \"id\": 10001,\n                    \"level\": \"113\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 113\n                },\n                {\n                    \"id\": 10002,\n                    \"level\": \"114\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 114\n                },\n                {\n                    \"id\": 10003,\n                    \"level\": \"115\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 115\n                },\n                {\n                    \"id\": 10004,\n                    \"level\": \"116\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 116\n                },\n                {\n                    \"id\": 10005,\n                    \"level\": \"117\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 117\n                },\n                {\n                    \"id\": 10006,\n                    \"level\": \"118\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 118\n                },\n                {\n                    \"id\": 10007,\n                    \"level\": \"119\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 119\n                },\n                {\n                    \"id\": 10008,\n                    \"level\": \"120\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 120\n                },\n                {\n                    \"id\": 10009,\n                    \"level\": \"121\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 121\n                },\n                {\n                    \"id\": 10010,\n                    \"level\": \"122\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 122\n                },\n                {\n                    \"id\": 10011,\n                    \"level\": \"123\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 123\n                },\n                {\n                    \"id\": 10012,\n                    \"level\": \"124\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 124\n                },\n                {\n                    \"id\": 10013,\n                    \"level\": \"125\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 125\n                },\n                {\n                    \"id\": 10014,\n                    \"level\": \"126\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 126\n                },\n                {\n                    \"id\": 10015,\n                    \"level\": \"127\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 127\n                },\n                {\n                    \"id\": 10016,\n                    \"level\": \"128\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 128\n                },\n                {\n                    \"id\": 10017,\n                    \"level\": \"129\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 129\n                },\n                {\n                    \"id\": 10018,\n                    \"level\": \"130\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 130\n                },\n                {\n                    \"id\": 10019,\n                    \"level\": \"131\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 131\n                },\n                {\n                    \"id\": 10020,\n                    \"level\": \"132\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 132\n                },\n                {\n                    \"id\": 10021,\n                    \"level\": \"133\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 133\n                },\n                {\n                    \"id\": 10022,\n                    \"level\": \"134\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 134\n                },\n                {\n                    \"id\": 10023,\n                    \"level\": \"135\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 135\n                },\n                {\n                    \"id\": 10024,\n                    \"level\": \"136\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 136\n                },\n                {\n                    \"id\": 10025,\n                    \"level\": \"137\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 137\n                },\n                {\n                    \"id\": 10026,\n                    \"level\": \"138\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 138\n                },\n                {\n                    \"id\": 10027,\n                    \"level\": \"139\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 139\n                },\n                {\n                    \"id\": 10028,\n                    \"level\": \"140\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 140\n                },\n                {\n                    \"id\": 10029,\n                    \"level\": \"141\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 141\n                },\n                {\n                    \"id\": 10030,\n                    \"level\": \"142\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 142\n                },\n                {\n                    \"id\": 10031,\n                    \"level\": \"143\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 143\n                },\n                {\n                    \"id\": 10032,\n                    \"level\": \"144\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 144\n                },\n                {\n                    \"id\": 10033,\n                    \"level\": \"145\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 145\n                },\n                {\n                    \"id\": 10034,\n                    \"level\": \"146\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 146\n                },\n                {\n                    \"id\": 10035,\n                    \"level\": \"147\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 147\n                },\n                {\n                    \"id\": 10036,\n                    \"level\": \"148\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 148\n                },\n                {\n                    \"id\": 10037,\n                    \"level\": \"149\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 149\n                },\n                {\n                    \"id\": 10038,\n                    \"level\": \"150\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 150\n                },\n                {\n                    \"id\": 10039,\n                    \"level\": \"151\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 151\n                },\n                {\n                    \"id\": 10040,\n                    \"level\": \"152\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 152\n                },\n                {\n                    \"id\": 10041,\n                    \"level\": \"153\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 153\n                },\n                {\n                    \"id\": 10042,\n                    \"level\": \"154\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 154\n                },\n                {\n                    \"id\": 10043,\n                    \"level\": \"155\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 155\n                },\n                {\n                    \"id\": 10044,\n                    \"level\": \"156\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 156\n                },\n                {\n                    \"id\": 10045,\n                    \"level\": \"157\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 157\n                },\n                {\n                    \"id\": 10046,\n                    \"level\": \"158\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 158\n                },\n                {\n                    \"id\": 10047,\n                    \"level\": \"159\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 159\n                },\n                {\n                    \"id\": 10048,\n                    \"level\": \"160\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 160\n                },\n                {\n                    \"id\": 10049,\n                    \"level\": \"161\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 161\n                },\n                {\n                    \"id\": 10050,\n                    \"level\": \"162\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 162\n                },\n                {\n                    \"id\": 10051,\n                    \"level\": \"163\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 163\n                },\n                {\n                    \"id\": 10052,\n                    \"level\": \"164\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 164\n                },\n                {\n                    \"id\": 10053,\n                    \"level\": \"165\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 165\n                },\n                {\n                    \"id\": 10054,\n                    \"level\": \"166\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 166\n                },\n                {\n                    \"id\": 10055,\n                    \"level\": \"167\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 167\n                },\n                {\n                    \"id\": 10056,\n                    \"level\": \"168\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 168\n                },\n                {\n                    \"id\": 10057,\n                    \"level\": \"169\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 169\n                },\n                {\n                    \"id\": 10058,\n                    \"level\": \"170\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 170\n                },\n                {\n                    \"id\": 10059,\n                    \"level\": \"171\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 171\n                },\n                {\n                    \"id\": 10060,\n                    \"level\": \"172\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 172\n                },\n                {\n                    \"id\": 10061,\n                    \"level\": \"173\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 173\n                },\n                {\n                    \"id\": 10062,\n                    \"level\": \"174\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 174\n                },\n                {\n                    \"id\": 10063,\n                    \"level\": \"175\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 175\n                },\n                {\n                    \"id\": 10064,\n                    \"level\": \"176\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 176\n                },\n                {\n                    \"id\": 10065,\n                    \"level\": \"177\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 177\n                },\n                {\n                    \"id\": 10066,\n                    \"level\": \"178\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 178\n                },\n                {\n                    \"id\": 10067,\n                    \"level\": \"179\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 179\n                },\n                {\n                    \"id\": 10068,\n                    \"level\": \"180\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 180\n                },\n                {\n                    \"id\": 10069,\n                    \"level\": \"181\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 181\n                },\n                {\n                    \"id\": 10070,\n                    \"level\": \"182\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 182\n                },\n                {\n                    \"id\": 10071,\n                    \"level\": \"183\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 183\n                },\n                {\n                    \"id\": 10072,\n                    \"level\": \"184\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 184\n                },\n                {\n                    \"id\": 10073,\n                    \"level\": \"185\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 185\n                },\n                {\n                    \"id\": 10074,\n                    \"level\": \"186\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 186\n                },\n                {\n                    \"id\": 10075,\n                    \"level\": \"187\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 187\n                },\n                {\n                    \"id\": 10076,\n                    \"level\": \"188\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 188\n                },\n                {\n                    \"id\": 10077,\n                    \"level\": \"189\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 189\n                },\n                {\n                    \"id\": 10078,\n                    \"level\": \"190\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 190\n                },\n                {\n                    \"id\": 10079,\n                    \"level\": \"191\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 191\n                },\n                {\n                    \"id\": 10080,\n                    \"level\": \"192\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 192\n                },\n                {\n                    \"id\": 10081,\n                    \"level\": \"193\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 193\n                },\n                {\n                    \"id\": 10082,\n                    \"level\": \"194\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 194\n                },\n                {\n                    \"id\": 10083,\n                    \"level\": \"195\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 195\n                },\n                {\n                    \"id\": 10084,\n                    \"level\": \"196\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 196\n                },\n                {\n                    \"id\": 10085,\n                    \"level\": \"197\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 197\n                },\n                {\n                    \"id\": 10086,\n                    \"level\": \"198\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 198\n                },\n                {\n                    \"id\": 10087,\n                    \"level\": \"199\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 199\n                },\n                {\n                    \"id\": 10088,\n                    \"level\": \"200\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 200\n                },\n                {\n                    \"id\": 10089,\n                    \"level\": \"201\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 201\n                },\n                {\n                    \"id\": 10090,\n                    \"level\": \"202\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 202\n                },\n                {\n                    \"id\": 10091,\n                    \"level\": \"203\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 203\n                },\n                {\n                    \"id\": 10092,\n                    \"level\": \"204\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 204\n                },\n                {\n                    \"id\": 10093,\n                    \"level\": \"205\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 205\n                },\n                {\n                    \"id\": 10094,\n                    \"level\": \"206\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 206\n                },\n                {\n                    \"id\": 10095,\n                    \"level\": \"207\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 207\n                },\n                {\n                    \"id\": 10096,\n                    \"level\": \"208\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 208\n                },\n                {\n                    \"id\": 10097,\n                    \"level\": \"209\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 209\n                },\n                {\n                    \"id\": 10098,\n                    \"level\": \"210\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 210\n                },\n                {\n                    \"id\": 10099,\n                    \"level\": \"211\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 211\n                },\n                {\n                    \"id\": 10100,\n                    \"level\": \"212\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 212\n                },\n                {\n                    \"id\": 10101,\n                    \"level\": \"213\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 213\n                },\n                {\n                    \"id\": 10102,\n                    \"level\": \"214\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 214\n                },\n                {\n                    \"id\": 10103,\n                    \"level\": \"215\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 215\n                },\n                {\n                    \"id\": 10104,\n                    \"level\": \"216\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 216\n                },\n                {\n                    \"id\": 10105,\n                    \"level\": \"217\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 217\n                },\n                {\n                    \"id\": 10106,\n                    \"level\": \"218\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 218\n                },\n                {\n                    \"id\": 10107,\n                    \"level\": \"219\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 219\n                },\n                {\n                    \"id\": 10108,\n                    \"level\": \"220\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 220\n                },\n                {\n                    \"id\": 10109,\n                    \"level\": \"221\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 221\n                },\n                {\n                    \"id\": 10110,\n                    \"level\": \"222\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 222\n                },\n                {\n                    \"id\": 10111,\n                    \"level\": \"223\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 223\n                },\n                {\n                    \"id\": 10112,\n                    \"level\": \"224\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 224\n                },\n                {\n                    \"id\": 10113,\n                    \"level\": \"225\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 225\n                },\n                {\n                    \"id\": 10114,\n                    \"level\": \"226\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 226\n                },\n                {\n                    \"id\": 10115,\n                    \"level\": \"227\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 227\n                },\n                {\n                    \"id\": 10116,\n                    \"level\": \"228\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 228\n                },\n                {\n                    \"id\": 10117,\n                    \"level\": \"229\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 229\n                },\n                {\n                    \"id\": 10118,\n                    \"level\": \"230\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 230\n                },\n                {\n                    \"id\": 10119,\n                    \"level\": \"231\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 231\n                },\n                {\n                    \"id\": 10120,\n                    \"level\": \"232\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 232\n                },\n                {\n                    \"id\": 10121,\n                    \"level\": \"233\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 233\n                },\n                {\n                    \"id\": 10122,\n                    \"level\": \"234\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 234\n                },\n                {\n                    \"id\": 10123,\n                    \"level\": \"235\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 235\n                },\n                {\n                    \"id\": 10124,\n                    \"level\": \"236\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 236\n                },\n                {\n                    \"id\": 10125,\n                    \"level\": \"237\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 237\n                },\n                {\n                    \"id\": 10126,\n                    \"level\": \"238\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 238\n                },\n                {\n                    \"id\": 10127,\n                    \"level\": \"239\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 239\n                },\n                {\n                    \"id\": 10128,\n                    \"level\": \"240\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 240\n                },\n                {\n                    \"id\": 10129,\n                    \"level\": \"241\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 241\n                },\n                {\n                    \"id\": 10130,\n                    \"level\": \"242\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 242\n                },\n                {\n                    \"id\": 10131,\n                    \"level\": \"243\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 243\n                },\n                {\n                    \"id\": 10132,\n                    \"level\": \"244\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 244\n                },\n                {\n                    \"id\": 10133,\n                    \"level\": \"245\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 245\n                },\n                {\n                    \"id\": 10134,\n                    \"level\": \"246\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 246\n                },\n                {\n                    \"id\": 10135,\n                    \"level\": \"247\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 247\n                },\n                {\n                    \"id\": 10136,\n                    \"level\": \"248\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 248\n                },\n                {\n                    \"id\": 10137,\n                    \"level\": \"249\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 249\n                },\n                {\n                    \"id\": 10138,\n                    \"level\": \"250\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 250\n                },\n                {\n                    \"id\": 10139,\n                    \"level\": \"251\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 251\n                },\n                {\n                    \"id\": 10140,\n                    \"level\": \"252\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 252\n                },\n                {\n                    \"id\": 10141,\n                    \"level\": \"253\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 253\n                },\n                {\n                    \"id\": 10142,\n                    \"level\": \"254\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 254\n                },\n                {\n                    \"id\": 10143,\n                    \"level\": \"255\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 255\n                },\n                {\n                    \"id\": 10144,\n                    \"level\": \"256\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 256\n                },\n                {\n                    \"id\": 10145,\n                    \"level\": \"257\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 257\n                },\n                {\n                    \"id\": 10146,\n                    \"level\": \"258\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 258\n                },\n                {\n                    \"id\": 10147,\n                    \"level\": \"259\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 259\n                },\n                {\n                    \"id\": 10148,\n                    \"level\": \"260\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 260\n                },\n                {\n                    \"id\": 10149,\n                    \"level\": \"261\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 261\n                },\n                {\n                    \"id\": 10150,\n                    \"level\": \"262\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 262\n                },\n                {\n                    \"id\": 10151,\n                    \"level\": \"263\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 263\n                },\n                {\n                    \"id\": 10152,\n                    \"level\": \"264\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 264\n                },\n                {\n                    \"id\": 10153,\n                    \"level\": \"265\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 265\n                },\n                {\n                    \"id\": 10154,\n                    \"level\": \"266\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 266\n                },\n                {\n                    \"id\": 10155,\n                    \"level\": \"267\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 267\n                },\n                {\n                    \"id\": 10156,\n                    \"level\": \"268\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 268\n                },\n                {\n                    \"id\": 10157,\n                    \"level\": \"269\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 269\n                },\n                {\n                    \"id\": 10158,\n                    \"level\": \"270\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 270\n                },\n                {\n                    \"id\": 10159,\n                    \"level\": \"271\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 271\n                },\n                {\n                    \"id\": 10160,\n                    \"level\": \"272\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 272\n                },\n                {\n                    \"id\": 10161,\n                    \"level\": \"273\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 273\n                },\n                {\n                    \"id\": 10162,\n                    \"level\": \"274\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 274\n                },\n                {\n                    \"id\": 10163,\n                    \"level\": \"275\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 275\n                },\n                {\n                    \"id\": 10164,\n                    \"level\": \"276\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 276\n                },\n                {\n                    \"id\": 10165,\n                    \"level\": \"277\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 277\n                },\n                {\n                    \"id\": 10166,\n                    \"level\": \"278\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 278\n                },\n                {\n                    \"id\": 10167,\n                    \"level\": \"279\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 279\n                },\n                {\n                    \"id\": 10168,\n                    \"level\": \"280\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 280\n                },\n                {\n                    \"id\": 10169,\n                    \"level\": \"281\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 281\n                },\n                {\n                    \"id\": 10170,\n                    \"level\": \"282\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 282\n                },\n                {\n                    \"id\": 10171,\n                    \"level\": \"283\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 283\n                },\n                {\n                    \"id\": 10172,\n                    \"level\": \"284\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 284\n                },\n                {\n                    \"id\": 10173,\n                    \"level\": \"285\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 285\n                },\n                {\n                    \"id\": 10174,\n                    \"level\": \"286\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 286\n                },\n                {\n                    \"id\": 10175,\n                    \"level\": \"287\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 287\n                },\n                {\n                    \"id\": 10176,\n                    \"level\": \"288\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 288\n                },\n                {\n                    \"id\": 10177,\n                    \"level\": \"289\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 289\n                },\n                {\n                    \"id\": 10178,\n                    \"level\": \"290\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 290\n                },\n                {\n                    \"id\": 10179,\n                    \"level\": \"291\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 291\n                },\n                {\n                    \"id\": 10180,\n                    \"level\": \"292\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 292\n                },\n                {\n                    \"id\": 10181,\n                    \"level\": \"293\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 293\n                },\n                {\n                    \"id\": 10182,\n                    \"level\": \"294\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 294\n                },\n                {\n                    \"id\": 10183,\n                    \"level\": \"295\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 295\n                },\n                {\n                    \"id\": 10184,\n                    \"level\": \"296\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 296\n                },\n                {\n                    \"id\": 10185,\n                    \"level\": \"297\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 297\n                },\n                {\n                    \"id\": 10186,\n                    \"level\": \"298\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 298\n                },\n                {\n                    \"id\": 10187,\n                    \"level\": \"299\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 299\n                },\n                {\n                    \"id\": 10188,\n                    \"level\": \"300\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 300\n                },\n                {\n                    \"id\": 10189,\n                    \"level\": \"301\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 301\n                },\n                {\n                    \"id\": 10190,\n                    \"level\": \"302\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 302\n                },\n                {\n                    \"id\": 10191,\n                    \"level\": \"303\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 303\n                },\n                {\n                    \"id\": 10192,\n                    \"level\": \"304\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 304\n                },\n                {\n                    \"id\": 10193,\n                    \"level\": \"305\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 305\n                },\n                {\n                    \"id\": 10194,\n                    \"level\": \"306\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 306\n                },\n                {\n                    \"id\": 10195,\n                    \"level\": \"307\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 307\n                },\n                {\n                    \"id\": 10196,\n                    \"level\": \"308\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 308\n                },\n                {\n                    \"id\": 10197,\n                    \"level\": \"309\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 309\n                },\n                {\n                    \"id\": 10198,\n                    \"level\": \"310\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 310\n                },\n                {\n                    \"id\": 10199,\n                    \"level\": \"311\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 311\n                },\n                {\n                    \"id\": 10200,\n                    \"level\": \"312\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 312\n                },\n                {\n                    \"id\": 10201,\n                    \"level\": \"313\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 313\n                },\n                {\n                    \"id\": 10202,\n                    \"level\": \"314\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 314\n                },\n                {\n                    \"id\": 10203,\n                    \"level\": \"315\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 315\n                },\n                {\n                    \"id\": 10204,\n                    \"level\": \"316\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 316\n                },\n                {\n                    \"id\": 10205,\n                    \"level\": \"317\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 317\n                },\n                {\n                    \"id\": 10206,\n                    \"level\": \"318\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 318\n                },\n                {\n                    \"id\": 10207,\n                    \"level\": \"319\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 319\n                },\n                {\n                    \"id\": 10208,\n                    \"level\": \"320\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 320\n                },\n                {\n                    \"id\": 10209,\n                    \"level\": \"321\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 321\n                },\n                {\n                    \"id\": 10210,\n                    \"level\": \"322\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 322\n                },\n                {\n                    \"id\": 10211,\n                    \"level\": \"323\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 323\n                },\n                {\n                    \"id\": 10212,\n                    \"level\": \"324\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 324\n                },\n                {\n                    \"id\": 10213,\n                    \"level\": \"325\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 325\n                },\n                {\n                    \"id\": 10214,\n                    \"level\": \"326\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 326\n                },\n                {\n                    \"id\": 10215,\n                    \"level\": \"327\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 327\n                },\n                {\n                    \"id\": 10216,\n                    \"level\": \"328\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 328\n                },\n                {\n                    \"id\": 10217,\n                    \"level\": \"329\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 329\n                },\n                {\n                    \"id\": 10218,\n                    \"level\": \"330\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 330\n                },\n                {\n                    \"id\": 10219,\n                    \"level\": \"331\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 331\n                },\n                {\n                    \"id\": 10220,\n                    \"level\": \"332\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 332\n                },\n                {\n                    \"id\": 10221,\n                    \"level\": \"333\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 333\n                },\n                {\n                    \"id\": 10222,\n                    \"level\": \"334\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 334\n                },\n                {\n                    \"id\": 10223,\n                    \"level\": \"335\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 335\n                },\n                {\n                    \"id\": 10224,\n                    \"level\": \"336\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 336\n                },\n                {\n                    \"id\": 10225,\n                    \"level\": \"337\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 337\n                },\n                {\n                    \"id\": 10226,\n                    \"level\": \"338\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 338\n                },\n                {\n                    \"id\": 10227,\n                    \"level\": \"339\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 339\n                },\n                {\n                    \"id\": 10228,\n                    \"level\": \"340\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 340\n                },\n                {\n                    \"id\": 10229,\n                    \"level\": \"341\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 341\n                },\n                {\n                    \"id\": 10230,\n                    \"level\": \"342\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 342\n                },\n                {\n                    \"id\": 10231,\n                    \"level\": \"343\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 343\n                },\n                {\n                    \"id\": 10232,\n                    \"level\": \"344\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 344\n                },\n                {\n                    \"id\": 10233,\n                    \"level\": \"345\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 345\n                },\n                {\n                    \"id\": 10234,\n                    \"level\": \"346\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 346\n                },\n                {\n                    \"id\": 10235,\n                    \"level\": \"347\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 347\n                },\n                {\n                    \"id\": 10236,\n                    \"level\": \"348\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 348\n                },\n                {\n                    \"id\": 10237,\n                    \"level\": \"349\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 349\n                },\n                {\n                    \"id\": 10238,\n                    \"level\": \"350\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 350\n                },\n                {\n                    \"id\": 10239,\n                    \"level\": \"351\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 351\n                },\n                {\n                    \"id\": 10240,\n                    \"level\": \"352\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 352\n                },\n                {\n                    \"id\": 10241,\n                    \"level\": \"353\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 353\n                },\n                {\n                    \"id\": 10242,\n                    \"level\": \"354\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 354\n                },\n                {\n                    \"id\": 10243,\n                    \"level\": \"355\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 355\n                },\n                {\n                    \"id\": 10244,\n                    \"level\": \"356\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 356\n                },\n                {\n                    \"id\": 10245,\n                    \"level\": \"357\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 357\n                },\n                {\n                    \"id\": 10246,\n                    \"level\": \"358\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 358\n                },\n                {\n                    \"id\": 10247,\n                    \"level\": \"359\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 359\n                },\n                {\n                    \"id\": 10248,\n                    \"level\": \"360\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 360\n                },\n                {\n                    \"id\": 10249,\n                    \"level\": \"361\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 361\n                },\n                {\n                    \"id\": 10250,\n                    \"level\": \"362\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 362\n                },\n                {\n                    \"id\": 10251,\n                    \"level\": \"363\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 363\n                },\n                {\n                    \"id\": 10252,\n                    \"level\": \"364\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 364\n                },\n                {\n                    \"id\": 10253,\n                    \"level\": \"365\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 365\n                },\n                {\n                    \"id\": 10254,\n                    \"level\": \"366\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 366\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1693,\n            \"alias\": \"snow_package\",\n            \"name\": \"Snow Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2788,\n                    \"benefit_type\": {\n                        \"id\": 29,\n                        \"benefit_type_id\": 52,\n                        \"name\": \"Australian Snow\",\n                        \"description\": \"Australian Snow\",\n                        \"key\": \"snow\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2777,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10255,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1694,\n            \"alias\": \"motorcycle_moped_pack\",\n            \"name\": \"Motorcycle / Moped Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2789,\n                    \"benefit_type\": {\n                        \"id\": 30,\n                        \"benefit_type_id\": 53,\n                        \"name\": \"Australian Motorcycle\",\n                        \"description\": \"Australian Motorcycle\",\n                        \"key\": \"motorcycle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2778,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10256,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1695,\n            \"alias\": \"cruise_pack\",\n            \"name\": \"Cruise Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2790,\n                    \"benefit_type\": {\n                        \"id\": 31,\n                        \"benefit_type_id\": 54,\n                        \"name\": \"Australian Cruise\",\n                        \"description\": \"Australian Cruise\",\n                        \"key\": \"cruise\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2779,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10257,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1696,\n            \"alias\": \"pet_cover\",\n            \"name\": \"Pet Cover\",\n            \"coverages\": [\n                {\n                    \"id\": 2791,\n                    \"benefit_type\": {\n                        \"id\": 32,\n                        \"benefit_type_id\": 19,\n                        \"name\": \"Australian Pet Cover\",\n                        \"description\": \"Australian Pet Cover\",\n                        \"key\": \"pet_cover_kennel_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2780,\n                            \"value\": 500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10258,\n                    \"level\": \"300\",\n                    \"type\": \"$ per day\",\n                    \"type_id\": 3,\n                    \"is_default\": true,\n                    \"value\": 300\n                }\n            ],\n            \"attributes\": []\n        }\n    ]\n}"}],"_postman_id":"37c6ecaa-2cc4-42cd-87df-58f26432c2c3"},{"name":"Product Packages Country","id":"c99c6317-68de-499e-a980-0268d96728a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-country/{{host_country_id}}/packages","description":"<p>StartFragment</p>\n<p>Get a list of packages available for this product in this country. Packages contain benefits.</p>\n<p>EndFragment</p>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","host-country","{{host_country_id}}","packages"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"3d7d4162-4b9c-4924-aa84-720f466a9840","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-country/{{v_host_country_id}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 13:53:21 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 76,\n            \"alias\": \"base_package\",\n            \"name\": \"Base Package\",\n            \"coverages\": [\n                {\n                    \"id\": 530,\n                    \"benefit_type\": {\n                        \"id\": 49,\n                        \"benefit_type_id\": 46,\n                        \"name\": \"Tournament Cancellation\",\n                        \"description\": \"Tournament Cancellation\",\n                        \"key\": \"event_cancellation\",\n                        \"limits\": []\n                    },\n                    \"limits\": [],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [],\n            \"attributes\": []\n        }\n    ]\n}"},{"id":"71b0e552-5382-43a1-9c3a-ddebacfcaa65","name":"Australian Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-country/{{host_country_id}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 12 Dec 2022 09:33:26 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1686,\n            \"alias\": \"travel_medical_package\",\n            \"name\": \"Travel Medical Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2774,\n                    \"benefit_type\": {\n                        \"id\": 15,\n                        \"benefit_type_id\": 22,\n                        \"name\": \"Emergency Medical and additional expenses\",\n                        \"description\": \"Emergency Medical and additional expenses\",\n                        \"key\": \"travel_medical\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2763,\n                            \"value\": 2000000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2775,\n                    \"benefit_type\": {\n                        \"id\": 16,\n                        \"benefit_type_id\": 47,\n                        \"name\": \"Funeral Expenses abroad\",\n                        \"description\": \"Funeral Expenses abroad\",\n                        \"key\": \"funeral_expense_abroad\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2764,\n                            \"value\": 20000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2776,\n                    \"benefit_type\": {\n                        \"id\": 17,\n                        \"benefit_type_id\": 45,\n                        \"name\": \"Hospital benefit and confinement\",\n                        \"description\": \"Hospital benefit and confinement\",\n                        \"key\": \"hospital_room_and_board\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2765,\n                            \"value\": 1000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [\n                {\n                    \"id\": 3271,\n                    \"product_package_validation_type\": {\n                        \"id\": 1,\n                        \"name\": \"Is Required\",\n                        \"description\": \"The package is required.\"\n                    },\n                    \"value\": \"1\"\n                }\n            ],\n            \"levels\": [\n                {\n                    \"id\": 9865,\n                    \"level\": \"Unlimited\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": null\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1687,\n            \"alias\": \"trip_interruption_package\",\n            \"name\": \"Trip Interruption Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2777,\n                    \"benefit_type\": {\n                        \"id\": 18,\n                        \"benefit_type_id\": 3,\n                        \"name\": \"Australian Trip Interruption\",\n                        \"description\": \"Australian Trip Interruption\",\n                        \"key\": \"trip_interruption\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2766,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2778,\n                    \"benefit_type\": {\n                        \"id\": 19,\n                        \"benefit_type_id\": 1,\n                        \"name\": \"Australian Trip Cancellation\",\n                        \"description\": \"Australian Trip Cancellation\",\n                        \"key\": \"trip_cancellation\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2767,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2779,\n                    \"benefit_type\": {\n                        \"id\": 20,\n                        \"benefit_type_id\": 48,\n                        \"name\": \"Airfare Reimbursement\",\n                        \"description\": \"Airfare Reimbursement\",\n                        \"key\": \"airfare_reimbursement\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2768,\n                            \"value\": 2500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2780,\n                    \"benefit_type\": {\n                        \"id\": 21,\n                        \"benefit_type_id\": 28,\n                        \"name\": \"Travel resumption\",\n                        \"description\": \"Travel resumption\",\n                        \"key\": \"resumption_of_trip\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2769,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2781,\n                    \"benefit_type\": {\n                        \"id\": 22,\n                        \"benefit_type_id\": 49,\n                        \"name\": \"Hijacking\",\n                        \"description\": \"Hijacking\",\n                        \"key\": \"hijacking\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2770,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9866,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9867,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9868,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9869,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9870,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9871,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9872,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9873,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                },\n                {\n                    \"id\": 9874,\n                    \"level\": \"15000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 15000\n                },\n                {\n                    \"id\": 9875,\n                    \"level\": \"20000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 20000\n                },\n                {\n                    \"id\": 9876,\n                    \"level\": \"30000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 30000\n                },\n                {\n                    \"id\": 9877,\n                    \"level\": \"40000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 40000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1688,\n            \"alias\": \"travel_delay_package\",\n            \"name\": \"Travel Delay Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2782,\n                    \"benefit_type\": {\n                        \"id\": 23,\n                        \"benefit_type_id\": 6,\n                        \"name\": \"Australian Trip Delay\",\n                        \"description\": \"Australian Trip Delay\",\n                        \"key\": \"trip_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2771,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9878,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1689,\n            \"alias\": \"personal_accident_package\",\n            \"name\": \"Personal Accident Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2783,\n                    \"benefit_type\": {\n                        \"id\": 24,\n                        \"benefit_type_id\": 25,\n                        \"name\": \"Australian ADD\",\n                        \"description\": \"Australian ADD\",\n                        \"key\": \"non_flight_accidental_death_and_dismemberment\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2772,\n                            \"value\": 25000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9879,\n                    \"level\": \"25000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 25000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1690,\n            \"alias\": \"personal_liability_package\",\n            \"name\": \"Personal Liability Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2784,\n                    \"benefit_type\": {\n                        \"id\": 25,\n                        \"benefit_type_id\": 50,\n                        \"name\": \"Australian Personal Liability\",\n                        \"description\": \"Australian Personal Liability\",\n                        \"key\": \"personal_liability\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2773,\n                            \"value\": 2500000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9880,\n                    \"level\": \"2500000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2500000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1691,\n            \"alias\": \"baggage_package\",\n            \"name\": \"Baggage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2785,\n                    \"benefit_type\": {\n                        \"id\": 26,\n                        \"benefit_type_id\": 14,\n                        \"name\": \"Luggage and personal effects\",\n                        \"description\": \"Luggage and personal effects\",\n                        \"key\": \"baggage_and_personal_effects\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2774,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2786,\n                    \"benefit_type\": {\n                        \"id\": 27,\n                        \"benefit_type_id\": 15,\n                        \"name\": \"Delayed Baggage allowance\",\n                        \"description\": \"Delayed Baggage allowance\",\n                        \"key\": \"baggage_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2775,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9881,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9882,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9883,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9884,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9885,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9886,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9887,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9888,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1692,\n            \"alias\": \"rental_vehicle_damage_package\",\n            \"name\": \"Rental Vehicle Damage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2787,\n                    \"benefit_type\": {\n                        \"id\": 28,\n                        \"benefit_type_id\": 51,\n                        \"name\": \"Australian Vehicle\",\n                        \"description\": \"Australian Vehicle\",\n                        \"key\": \"vehicle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2776,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9889,\n                    \"level\": \"1\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 1\n                },\n                {\n                    \"id\": 9890,\n                    \"level\": \"2\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 2\n                },\n                {\n                    \"id\": 9891,\n                    \"level\": \"3\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 3\n                },\n                {\n                    \"id\": 9892,\n                    \"level\": \"4\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 4\n                },\n                {\n                    \"id\": 9893,\n                    \"level\": \"5\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 5\n                },\n                {\n                    \"id\": 9894,\n                    \"level\": \"6\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 6\n                },\n                {\n                    \"id\": 9895,\n                    \"level\": \"7\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 7\n                },\n                {\n                    \"id\": 9896,\n                    \"level\": \"8\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 8\n                },\n                {\n                    \"id\": 9897,\n                    \"level\": \"9\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 9\n                },\n                {\n                    \"id\": 9898,\n                    \"level\": \"10\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 10\n                },\n                {\n                    \"id\": 9899,\n                    \"level\": \"11\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 11\n                },\n                {\n                    \"id\": 9900,\n                    \"level\": \"12\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 12\n                },\n                {\n                    \"id\": 9901,\n                    \"level\": \"13\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 13\n                },\n                {\n                    \"id\": 9902,\n                    \"level\": \"14\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 14\n                },\n                {\n                    \"id\": 9903,\n                    \"level\": \"15\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 15\n                },\n                {\n                    \"id\": 9904,\n                    \"level\": \"16\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 16\n                },\n                {\n                    \"id\": 9905,\n                    \"level\": \"17\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 17\n                },\n                {\n                    \"id\": 9906,\n                    \"level\": \"18\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 18\n                },\n                {\n                    \"id\": 9907,\n                    \"level\": \"19\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 19\n                },\n                {\n                    \"id\": 9908,\n                    \"level\": \"20\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 20\n                },\n                {\n                    \"id\": 9909,\n                    \"level\": \"21\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 21\n                },\n                {\n                    \"id\": 9910,\n                    \"level\": \"22\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 22\n                },\n                {\n                    \"id\": 9911,\n                    \"level\": \"23\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 23\n                },\n                {\n                    \"id\": 9912,\n                    \"level\": \"24\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 24\n                },\n                {\n                    \"id\": 9913,\n                    \"level\": \"25\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 25\n                },\n                {\n                    \"id\": 9914,\n                    \"level\": \"26\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 26\n                },\n                {\n                    \"id\": 9915,\n                    \"level\": \"27\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 27\n                },\n                {\n                    \"id\": 9916,\n                    \"level\": \"28\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 28\n                },\n                {\n                    \"id\": 9917,\n                    \"level\": \"29\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 29\n                },\n                {\n                    \"id\": 9918,\n                    \"level\": \"30\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 30\n                },\n                {\n                    \"id\": 9919,\n                    \"level\": \"31\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 31\n                },\n                {\n                    \"id\": 9920,\n                    \"level\": \"32\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 32\n                },\n                {\n                    \"id\": 9921,\n                    \"level\": \"33\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 33\n                },\n                {\n                    \"id\": 9922,\n                    \"level\": \"34\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 34\n                },\n                {\n                    \"id\": 9923,\n                    \"level\": \"35\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 35\n                },\n                {\n                    \"id\": 9924,\n                    \"level\": \"36\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 36\n                },\n                {\n                    \"id\": 9925,\n                    \"level\": \"37\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 37\n                },\n                {\n                    \"id\": 9926,\n                    \"level\": \"38\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 38\n                },\n                {\n                    \"id\": 9927,\n                    \"level\": \"39\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 39\n                },\n                {\n                    \"id\": 9928,\n                    \"level\": \"40\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 40\n                },\n                {\n                    \"id\": 9929,\n                    \"level\": \"41\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 41\n                },\n                {\n                    \"id\": 9930,\n                    \"level\": \"42\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 42\n                },\n                {\n                    \"id\": 9931,\n                    \"level\": \"43\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 43\n                },\n                {\n                    \"id\": 9932,\n                    \"level\": \"44\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 44\n                },\n                {\n                    \"id\": 9933,\n                    \"level\": \"45\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 45\n                },\n                {\n                    \"id\": 9934,\n                    \"level\": \"46\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 46\n                },\n                {\n                    \"id\": 9935,\n                    \"level\": \"47\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 47\n                },\n                {\n                    \"id\": 9936,\n                    \"level\": \"48\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 48\n                },\n                {\n                    \"id\": 9937,\n                    \"level\": \"49\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 49\n                },\n                {\n                    \"id\": 9938,\n                    \"level\": \"50\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 50\n                },\n                {\n                    \"id\": 9939,\n                    \"level\": \"51\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 51\n                },\n                {\n                    \"id\": 9940,\n                    \"level\": \"52\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 52\n                },\n                {\n                    \"id\": 9941,\n                    \"level\": \"53\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 53\n                },\n                {\n                    \"id\": 9942,\n                    \"level\": \"54\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 54\n                },\n                {\n                    \"id\": 9943,\n                    \"level\": \"55\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 55\n                },\n                {\n                    \"id\": 9944,\n                    \"level\": \"56\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 56\n                },\n                {\n                    \"id\": 9945,\n                    \"level\": \"57\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 57\n                },\n                {\n                    \"id\": 9946,\n                    \"level\": \"58\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 58\n                },\n                {\n                    \"id\": 9947,\n                    \"level\": \"59\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 59\n                },\n                {\n                    \"id\": 9948,\n                    \"level\": \"60\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 60\n                },\n                {\n                    \"id\": 9949,\n                    \"level\": \"61\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 61\n                },\n                {\n                    \"id\": 9950,\n                    \"level\": \"62\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 62\n                },\n                {\n                    \"id\": 9951,\n                    \"level\": \"63\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 63\n                },\n                {\n                    \"id\": 9952,\n                    \"level\": \"64\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 64\n                },\n                {\n                    \"id\": 9953,\n                    \"level\": \"65\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 65\n                },\n                {\n                    \"id\": 9954,\n                    \"level\": \"66\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 66\n                },\n                {\n                    \"id\": 9955,\n                    \"level\": \"67\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 67\n                },\n                {\n                    \"id\": 9956,\n                    \"level\": \"68\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 68\n                },\n                {\n                    \"id\": 9957,\n                    \"level\": \"69\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 69\n                },\n                {\n                    \"id\": 9958,\n                    \"level\": \"70\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 70\n                },\n                {\n                    \"id\": 9959,\n                    \"level\": \"71\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 71\n                },\n                {\n                    \"id\": 9960,\n                    \"level\": \"72\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 72\n                },\n                {\n                    \"id\": 9961,\n                    \"level\": \"73\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 73\n                },\n                {\n                    \"id\": 9962,\n                    \"level\": \"74\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 74\n                },\n                {\n                    \"id\": 9963,\n                    \"level\": \"75\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 75\n                },\n                {\n                    \"id\": 9964,\n                    \"level\": \"76\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 76\n                },\n                {\n                    \"id\": 9965,\n                    \"level\": \"77\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 77\n                },\n                {\n                    \"id\": 9966,\n                    \"level\": \"78\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 78\n                },\n                {\n                    \"id\": 9967,\n                    \"level\": \"79\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 79\n                },\n                {\n                    \"id\": 9968,\n                    \"level\": \"80\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 80\n                },\n                {\n                    \"id\": 9969,\n                    \"level\": \"81\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 81\n                },\n                {\n                    \"id\": 9970,\n                    \"level\": \"82\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 82\n                },\n                {\n                    \"id\": 9971,\n                    \"level\": \"83\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 83\n                },\n                {\n                    \"id\": 9972,\n                    \"level\": \"84\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 84\n                },\n                {\n                    \"id\": 9973,\n                    \"level\": \"85\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 85\n                },\n                {\n                    \"id\": 9974,\n                    \"level\": \"86\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 86\n                },\n                {\n                    \"id\": 9975,\n                    \"level\": \"87\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 87\n                },\n                {\n                    \"id\": 9976,\n                    \"level\": \"88\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 88\n                },\n                {\n                    \"id\": 9977,\n                    \"level\": \"89\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 89\n                },\n                {\n                    \"id\": 9978,\n                    \"level\": \"90\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 90\n                },\n                {\n                    \"id\": 9979,\n                    \"level\": \"91\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 91\n                },\n                {\n                    \"id\": 9980,\n                    \"level\": \"92\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 92\n                },\n                {\n                    \"id\": 9981,\n                    \"level\": \"93\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 93\n                },\n                {\n                    \"id\": 9982,\n                    \"level\": \"94\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 94\n                },\n                {\n                    \"id\": 9983,\n                    \"level\": \"95\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 95\n                },\n                {\n                    \"id\": 9984,\n                    \"level\": \"96\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 96\n                },\n                {\n                    \"id\": 9985,\n                    \"level\": \"97\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 97\n                },\n                {\n                    \"id\": 9986,\n                    \"level\": \"98\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 98\n                },\n                {\n                    \"id\": 9987,\n                    \"level\": \"99\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 99\n                },\n                {\n                    \"id\": 9988,\n                    \"level\": \"100\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 100\n                },\n                {\n                    \"id\": 9989,\n                    \"level\": \"101\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 101\n                },\n                {\n                    \"id\": 9990,\n                    \"level\": \"102\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 102\n                },\n                {\n                    \"id\": 9991,\n                    \"level\": \"103\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 103\n                },\n                {\n                    \"id\": 9992,\n                    \"level\": \"104\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 104\n                },\n                {\n                    \"id\": 9993,\n                    \"level\": \"105\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 105\n                },\n                {\n                    \"id\": 9994,\n                    \"level\": \"106\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 106\n                },\n                {\n                    \"id\": 9995,\n                    \"level\": \"107\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 107\n                },\n                {\n                    \"id\": 9996,\n                    \"level\": \"108\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 108\n                },\n                {\n                    \"id\": 9997,\n                    \"level\": \"109\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 109\n                },\n                {\n                    \"id\": 9998,\n                    \"level\": \"110\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 110\n                },\n                {\n                    \"id\": 9999,\n                    \"level\": \"111\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 111\n                },\n                {\n                    \"id\": 10000,\n                    \"level\": \"112\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 112\n                },\n                {\n                    \"id\": 10001,\n                    \"level\": \"113\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 113\n                },\n                {\n                    \"id\": 10002,\n                    \"level\": \"114\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 114\n                },\n                {\n                    \"id\": 10003,\n                    \"level\": \"115\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 115\n                },\n                {\n                    \"id\": 10004,\n                    \"level\": \"116\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 116\n                },\n                {\n                    \"id\": 10005,\n                    \"level\": \"117\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 117\n                },\n                {\n                    \"id\": 10006,\n                    \"level\": \"118\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 118\n                },\n                {\n                    \"id\": 10007,\n                    \"level\": \"119\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 119\n                },\n                {\n                    \"id\": 10008,\n                    \"level\": \"120\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 120\n                },\n                {\n                    \"id\": 10009,\n                    \"level\": \"121\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 121\n                },\n                {\n                    \"id\": 10010,\n                    \"level\": \"122\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 122\n                },\n                {\n                    \"id\": 10011,\n                    \"level\": \"123\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 123\n                },\n                {\n                    \"id\": 10012,\n                    \"level\": \"124\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 124\n                },\n                {\n                    \"id\": 10013,\n                    \"level\": \"125\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 125\n                },\n                {\n                    \"id\": 10014,\n                    \"level\": \"126\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 126\n                },\n                {\n                    \"id\": 10015,\n                    \"level\": \"127\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 127\n                },\n                {\n                    \"id\": 10016,\n                    \"level\": \"128\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 128\n                },\n                {\n                    \"id\": 10017,\n                    \"level\": \"129\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 129\n                },\n                {\n                    \"id\": 10018,\n                    \"level\": \"130\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 130\n                },\n                {\n                    \"id\": 10019,\n                    \"level\": \"131\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 131\n                },\n                {\n                    \"id\": 10020,\n                    \"level\": \"132\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 132\n                },\n                {\n                    \"id\": 10021,\n                    \"level\": \"133\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 133\n                },\n                {\n                    \"id\": 10022,\n                    \"level\": \"134\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 134\n                },\n                {\n                    \"id\": 10023,\n                    \"level\": \"135\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 135\n                },\n                {\n                    \"id\": 10024,\n                    \"level\": \"136\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 136\n                },\n                {\n                    \"id\": 10025,\n                    \"level\": \"137\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 137\n                },\n                {\n                    \"id\": 10026,\n                    \"level\": \"138\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 138\n                },\n                {\n                    \"id\": 10027,\n                    \"level\": \"139\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 139\n                },\n                {\n                    \"id\": 10028,\n                    \"level\": \"140\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 140\n                },\n                {\n                    \"id\": 10029,\n                    \"level\": \"141\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 141\n                },\n                {\n                    \"id\": 10030,\n                    \"level\": \"142\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 142\n                },\n                {\n                    \"id\": 10031,\n                    \"level\": \"143\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 143\n                },\n                {\n                    \"id\": 10032,\n                    \"level\": \"144\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 144\n                },\n                {\n                    \"id\": 10033,\n                    \"level\": \"145\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 145\n                },\n                {\n                    \"id\": 10034,\n                    \"level\": \"146\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 146\n                },\n                {\n                    \"id\": 10035,\n                    \"level\": \"147\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 147\n                },\n                {\n                    \"id\": 10036,\n                    \"level\": \"148\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 148\n                },\n                {\n                    \"id\": 10037,\n                    \"level\": \"149\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 149\n                },\n                {\n                    \"id\": 10038,\n                    \"level\": \"150\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 150\n                },\n                {\n                    \"id\": 10039,\n                    \"level\": \"151\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 151\n                },\n                {\n                    \"id\": 10040,\n                    \"level\": \"152\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 152\n                },\n                {\n                    \"id\": 10041,\n                    \"level\": \"153\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 153\n                },\n                {\n                    \"id\": 10042,\n                    \"level\": \"154\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 154\n                },\n                {\n                    \"id\": 10043,\n                    \"level\": \"155\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 155\n                },\n                {\n                    \"id\": 10044,\n                    \"level\": \"156\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 156\n                },\n                {\n                    \"id\": 10045,\n                    \"level\": \"157\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 157\n                },\n                {\n                    \"id\": 10046,\n                    \"level\": \"158\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 158\n                },\n                {\n                    \"id\": 10047,\n                    \"level\": \"159\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 159\n                },\n                {\n                    \"id\": 10048,\n                    \"level\": \"160\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 160\n                },\n                {\n                    \"id\": 10049,\n                    \"level\": \"161\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 161\n                },\n                {\n                    \"id\": 10050,\n                    \"level\": \"162\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 162\n                },\n                {\n                    \"id\": 10051,\n                    \"level\": \"163\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 163\n                },\n                {\n                    \"id\": 10052,\n                    \"level\": \"164\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 164\n                },\n                {\n                    \"id\": 10053,\n                    \"level\": \"165\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 165\n                },\n                {\n                    \"id\": 10054,\n                    \"level\": \"166\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 166\n                },\n                {\n                    \"id\": 10055,\n                    \"level\": \"167\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 167\n                },\n                {\n                    \"id\": 10056,\n                    \"level\": \"168\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 168\n                },\n                {\n                    \"id\": 10057,\n                    \"level\": \"169\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 169\n                },\n                {\n                    \"id\": 10058,\n                    \"level\": \"170\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 170\n                },\n                {\n                    \"id\": 10059,\n                    \"level\": \"171\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 171\n                },\n                {\n                    \"id\": 10060,\n                    \"level\": \"172\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 172\n                },\n                {\n                    \"id\": 10061,\n                    \"level\": \"173\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 173\n                },\n                {\n                    \"id\": 10062,\n                    \"level\": \"174\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 174\n                },\n                {\n                    \"id\": 10063,\n                    \"level\": \"175\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 175\n                },\n                {\n                    \"id\": 10064,\n                    \"level\": \"176\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 176\n                },\n                {\n                    \"id\": 10065,\n                    \"level\": \"177\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 177\n                },\n                {\n                    \"id\": 10066,\n                    \"level\": \"178\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 178\n                },\n                {\n                    \"id\": 10067,\n                    \"level\": \"179\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 179\n                },\n                {\n                    \"id\": 10068,\n                    \"level\": \"180\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 180\n                },\n                {\n                    \"id\": 10069,\n                    \"level\": \"181\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 181\n                },\n                {\n                    \"id\": 10070,\n                    \"level\": \"182\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 182\n                },\n                {\n                    \"id\": 10071,\n                    \"level\": \"183\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 183\n                },\n                {\n                    \"id\": 10072,\n                    \"level\": \"184\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 184\n                },\n                {\n                    \"id\": 10073,\n                    \"level\": \"185\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 185\n                },\n                {\n                    \"id\": 10074,\n                    \"level\": \"186\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 186\n                },\n                {\n                    \"id\": 10075,\n                    \"level\": \"187\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 187\n                },\n                {\n                    \"id\": 10076,\n                    \"level\": \"188\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 188\n                },\n                {\n                    \"id\": 10077,\n                    \"level\": \"189\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 189\n                },\n                {\n                    \"id\": 10078,\n                    \"level\": \"190\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 190\n                },\n                {\n                    \"id\": 10079,\n                    \"level\": \"191\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 191\n                },\n                {\n                    \"id\": 10080,\n                    \"level\": \"192\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 192\n                },\n                {\n                    \"id\": 10081,\n                    \"level\": \"193\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 193\n                },\n                {\n                    \"id\": 10082,\n                    \"level\": \"194\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 194\n                },\n                {\n                    \"id\": 10083,\n                    \"level\": \"195\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 195\n                },\n                {\n                    \"id\": 10084,\n                    \"level\": \"196\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 196\n                },\n                {\n                    \"id\": 10085,\n                    \"level\": \"197\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 197\n                },\n                {\n                    \"id\": 10086,\n                    \"level\": \"198\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 198\n                },\n                {\n                    \"id\": 10087,\n                    \"level\": \"199\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 199\n                },\n                {\n                    \"id\": 10088,\n                    \"level\": \"200\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 200\n                },\n                {\n                    \"id\": 10089,\n                    \"level\": \"201\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 201\n                },\n                {\n                    \"id\": 10090,\n                    \"level\": \"202\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 202\n                },\n                {\n                    \"id\": 10091,\n                    \"level\": \"203\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 203\n                },\n                {\n                    \"id\": 10092,\n                    \"level\": \"204\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 204\n                },\n                {\n                    \"id\": 10093,\n                    \"level\": \"205\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 205\n                },\n                {\n                    \"id\": 10094,\n                    \"level\": \"206\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 206\n                },\n                {\n                    \"id\": 10095,\n                    \"level\": \"207\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 207\n                },\n                {\n                    \"id\": 10096,\n                    \"level\": \"208\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 208\n                },\n                {\n                    \"id\": 10097,\n                    \"level\": \"209\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 209\n                },\n                {\n                    \"id\": 10098,\n                    \"level\": \"210\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 210\n                },\n                {\n                    \"id\": 10099,\n                    \"level\": \"211\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 211\n                },\n                {\n                    \"id\": 10100,\n                    \"level\": \"212\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 212\n                },\n                {\n                    \"id\": 10101,\n                    \"level\": \"213\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 213\n                },\n                {\n                    \"id\": 10102,\n                    \"level\": \"214\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 214\n                },\n                {\n                    \"id\": 10103,\n                    \"level\": \"215\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 215\n                },\n                {\n                    \"id\": 10104,\n                    \"level\": \"216\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 216\n                },\n                {\n                    \"id\": 10105,\n                    \"level\": \"217\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 217\n                },\n                {\n                    \"id\": 10106,\n                    \"level\": \"218\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 218\n                },\n                {\n                    \"id\": 10107,\n                    \"level\": \"219\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 219\n                },\n                {\n                    \"id\": 10108,\n                    \"level\": \"220\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 220\n                },\n                {\n                    \"id\": 10109,\n                    \"level\": \"221\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 221\n                },\n                {\n                    \"id\": 10110,\n                    \"level\": \"222\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 222\n                },\n                {\n                    \"id\": 10111,\n                    \"level\": \"223\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 223\n                },\n                {\n                    \"id\": 10112,\n                    \"level\": \"224\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 224\n                },\n                {\n                    \"id\": 10113,\n                    \"level\": \"225\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 225\n                },\n                {\n                    \"id\": 10114,\n                    \"level\": \"226\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 226\n                },\n                {\n                    \"id\": 10115,\n                    \"level\": \"227\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 227\n                },\n                {\n                    \"id\": 10116,\n                    \"level\": \"228\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 228\n                },\n                {\n                    \"id\": 10117,\n                    \"level\": \"229\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 229\n                },\n                {\n                    \"id\": 10118,\n                    \"level\": \"230\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 230\n                },\n                {\n                    \"id\": 10119,\n                    \"level\": \"231\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 231\n                },\n                {\n                    \"id\": 10120,\n                    \"level\": \"232\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 232\n                },\n                {\n                    \"id\": 10121,\n                    \"level\": \"233\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 233\n                },\n                {\n                    \"id\": 10122,\n                    \"level\": \"234\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 234\n                },\n                {\n                    \"id\": 10123,\n                    \"level\": \"235\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 235\n                },\n                {\n                    \"id\": 10124,\n                    \"level\": \"236\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 236\n                },\n                {\n                    \"id\": 10125,\n                    \"level\": \"237\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 237\n                },\n                {\n                    \"id\": 10126,\n                    \"level\": \"238\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 238\n                },\n                {\n                    \"id\": 10127,\n                    \"level\": \"239\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 239\n                },\n                {\n                    \"id\": 10128,\n                    \"level\": \"240\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 240\n                },\n                {\n                    \"id\": 10129,\n                    \"level\": \"241\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 241\n                },\n                {\n                    \"id\": 10130,\n                    \"level\": \"242\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 242\n                },\n                {\n                    \"id\": 10131,\n                    \"level\": \"243\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 243\n                },\n                {\n                    \"id\": 10132,\n                    \"level\": \"244\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 244\n                },\n                {\n                    \"id\": 10133,\n                    \"level\": \"245\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 245\n                },\n                {\n                    \"id\": 10134,\n                    \"level\": \"246\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 246\n                },\n                {\n                    \"id\": 10135,\n                    \"level\": \"247\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 247\n                },\n                {\n                    \"id\": 10136,\n                    \"level\": \"248\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 248\n                },\n                {\n                    \"id\": 10137,\n                    \"level\": \"249\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 249\n                },\n                {\n                    \"id\": 10138,\n                    \"level\": \"250\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 250\n                },\n                {\n                    \"id\": 10139,\n                    \"level\": \"251\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 251\n                },\n                {\n                    \"id\": 10140,\n                    \"level\": \"252\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 252\n                },\n                {\n                    \"id\": 10141,\n                    \"level\": \"253\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 253\n                },\n                {\n                    \"id\": 10142,\n                    \"level\": \"254\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 254\n                },\n                {\n                    \"id\": 10143,\n                    \"level\": \"255\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 255\n                },\n                {\n                    \"id\": 10144,\n                    \"level\": \"256\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 256\n                },\n                {\n                    \"id\": 10145,\n                    \"level\": \"257\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 257\n                },\n                {\n                    \"id\": 10146,\n                    \"level\": \"258\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 258\n                },\n                {\n                    \"id\": 10147,\n                    \"level\": \"259\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 259\n                },\n                {\n                    \"id\": 10148,\n                    \"level\": \"260\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 260\n                },\n                {\n                    \"id\": 10149,\n                    \"level\": \"261\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 261\n                },\n                {\n                    \"id\": 10150,\n                    \"level\": \"262\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 262\n                },\n                {\n                    \"id\": 10151,\n                    \"level\": \"263\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 263\n                },\n                {\n                    \"id\": 10152,\n                    \"level\": \"264\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 264\n                },\n                {\n                    \"id\": 10153,\n                    \"level\": \"265\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 265\n                },\n                {\n                    \"id\": 10154,\n                    \"level\": \"266\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 266\n                },\n                {\n                    \"id\": 10155,\n                    \"level\": \"267\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 267\n                },\n                {\n                    \"id\": 10156,\n                    \"level\": \"268\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 268\n                },\n                {\n                    \"id\": 10157,\n                    \"level\": \"269\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 269\n                },\n                {\n                    \"id\": 10158,\n                    \"level\": \"270\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 270\n                },\n                {\n                    \"id\": 10159,\n                    \"level\": \"271\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 271\n                },\n                {\n                    \"id\": 10160,\n                    \"level\": \"272\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 272\n                },\n                {\n                    \"id\": 10161,\n                    \"level\": \"273\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 273\n                },\n                {\n                    \"id\": 10162,\n                    \"level\": \"274\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 274\n                },\n                {\n                    \"id\": 10163,\n                    \"level\": \"275\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 275\n                },\n                {\n                    \"id\": 10164,\n                    \"level\": \"276\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 276\n                },\n                {\n                    \"id\": 10165,\n                    \"level\": \"277\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 277\n                },\n                {\n                    \"id\": 10166,\n                    \"level\": \"278\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 278\n                },\n                {\n                    \"id\": 10167,\n                    \"level\": \"279\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 279\n                },\n                {\n                    \"id\": 10168,\n                    \"level\": \"280\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 280\n                },\n                {\n                    \"id\": 10169,\n                    \"level\": \"281\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 281\n                },\n                {\n                    \"id\": 10170,\n                    \"level\": \"282\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 282\n                },\n                {\n                    \"id\": 10171,\n                    \"level\": \"283\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 283\n                },\n                {\n                    \"id\": 10172,\n                    \"level\": \"284\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 284\n                },\n                {\n                    \"id\": 10173,\n                    \"level\": \"285\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 285\n                },\n                {\n                    \"id\": 10174,\n                    \"level\": \"286\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 286\n                },\n                {\n                    \"id\": 10175,\n                    \"level\": \"287\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 287\n                },\n                {\n                    \"id\": 10176,\n                    \"level\": \"288\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 288\n                },\n                {\n                    \"id\": 10177,\n                    \"level\": \"289\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 289\n                },\n                {\n                    \"id\": 10178,\n                    \"level\": \"290\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 290\n                },\n                {\n                    \"id\": 10179,\n                    \"level\": \"291\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 291\n                },\n                {\n                    \"id\": 10180,\n                    \"level\": \"292\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 292\n                },\n                {\n                    \"id\": 10181,\n                    \"level\": \"293\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 293\n                },\n                {\n                    \"id\": 10182,\n                    \"level\": \"294\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 294\n                },\n                {\n                    \"id\": 10183,\n                    \"level\": \"295\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 295\n                },\n                {\n                    \"id\": 10184,\n                    \"level\": \"296\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 296\n                },\n                {\n                    \"id\": 10185,\n                    \"level\": \"297\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 297\n                },\n                {\n                    \"id\": 10186,\n                    \"level\": \"298\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 298\n                },\n                {\n                    \"id\": 10187,\n                    \"level\": \"299\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 299\n                },\n                {\n                    \"id\": 10188,\n                    \"level\": \"300\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 300\n                },\n                {\n                    \"id\": 10189,\n                    \"level\": \"301\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 301\n                },\n                {\n                    \"id\": 10190,\n                    \"level\": \"302\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 302\n                },\n                {\n                    \"id\": 10191,\n                    \"level\": \"303\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 303\n                },\n                {\n                    \"id\": 10192,\n                    \"level\": \"304\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 304\n                },\n                {\n                    \"id\": 10193,\n                    \"level\": \"305\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 305\n                },\n                {\n                    \"id\": 10194,\n                    \"level\": \"306\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 306\n                },\n                {\n                    \"id\": 10195,\n                    \"level\": \"307\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 307\n                },\n                {\n                    \"id\": 10196,\n                    \"level\": \"308\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 308\n                },\n                {\n                    \"id\": 10197,\n                    \"level\": \"309\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 309\n                },\n                {\n                    \"id\": 10198,\n                    \"level\": \"310\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 310\n                },\n                {\n                    \"id\": 10199,\n                    \"level\": \"311\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 311\n                },\n                {\n                    \"id\": 10200,\n                    \"level\": \"312\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 312\n                },\n                {\n                    \"id\": 10201,\n                    \"level\": \"313\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 313\n                },\n                {\n                    \"id\": 10202,\n                    \"level\": \"314\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 314\n                },\n                {\n                    \"id\": 10203,\n                    \"level\": \"315\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 315\n                },\n                {\n                    \"id\": 10204,\n                    \"level\": \"316\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 316\n                },\n                {\n                    \"id\": 10205,\n                    \"level\": \"317\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 317\n                },\n                {\n                    \"id\": 10206,\n                    \"level\": \"318\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 318\n                },\n                {\n                    \"id\": 10207,\n                    \"level\": \"319\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 319\n                },\n                {\n                    \"id\": 10208,\n                    \"level\": \"320\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 320\n                },\n                {\n                    \"id\": 10209,\n                    \"level\": \"321\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 321\n                },\n                {\n                    \"id\": 10210,\n                    \"level\": \"322\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 322\n                },\n                {\n                    \"id\": 10211,\n                    \"level\": \"323\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 323\n                },\n                {\n                    \"id\": 10212,\n                    \"level\": \"324\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 324\n                },\n                {\n                    \"id\": 10213,\n                    \"level\": \"325\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 325\n                },\n                {\n                    \"id\": 10214,\n                    \"level\": \"326\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 326\n                },\n                {\n                    \"id\": 10215,\n                    \"level\": \"327\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 327\n                },\n                {\n                    \"id\": 10216,\n                    \"level\": \"328\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 328\n                },\n                {\n                    \"id\": 10217,\n                    \"level\": \"329\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 329\n                },\n                {\n                    \"id\": 10218,\n                    \"level\": \"330\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 330\n                },\n                {\n                    \"id\": 10219,\n                    \"level\": \"331\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 331\n                },\n                {\n                    \"id\": 10220,\n                    \"level\": \"332\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 332\n                },\n                {\n                    \"id\": 10221,\n                    \"level\": \"333\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 333\n                },\n                {\n                    \"id\": 10222,\n                    \"level\": \"334\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 334\n                },\n                {\n                    \"id\": 10223,\n                    \"level\": \"335\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 335\n                },\n                {\n                    \"id\": 10224,\n                    \"level\": \"336\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 336\n                },\n                {\n                    \"id\": 10225,\n                    \"level\": \"337\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 337\n                },\n                {\n                    \"id\": 10226,\n                    \"level\": \"338\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 338\n                },\n                {\n                    \"id\": 10227,\n                    \"level\": \"339\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 339\n                },\n                {\n                    \"id\": 10228,\n                    \"level\": \"340\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 340\n                },\n                {\n                    \"id\": 10229,\n                    \"level\": \"341\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 341\n                },\n                {\n                    \"id\": 10230,\n                    \"level\": \"342\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 342\n                },\n                {\n                    \"id\": 10231,\n                    \"level\": \"343\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 343\n                },\n                {\n                    \"id\": 10232,\n                    \"level\": \"344\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 344\n                },\n                {\n                    \"id\": 10233,\n                    \"level\": \"345\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 345\n                },\n                {\n                    \"id\": 10234,\n                    \"level\": \"346\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 346\n                },\n                {\n                    \"id\": 10235,\n                    \"level\": \"347\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 347\n                },\n                {\n                    \"id\": 10236,\n                    \"level\": \"348\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 348\n                },\n                {\n                    \"id\": 10237,\n                    \"level\": \"349\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 349\n                },\n                {\n                    \"id\": 10238,\n                    \"level\": \"350\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 350\n                },\n                {\n                    \"id\": 10239,\n                    \"level\": \"351\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 351\n                },\n                {\n                    \"id\": 10240,\n                    \"level\": \"352\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 352\n                },\n                {\n                    \"id\": 10241,\n                    \"level\": \"353\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 353\n                },\n                {\n                    \"id\": 10242,\n                    \"level\": \"354\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 354\n                },\n                {\n                    \"id\": 10243,\n                    \"level\": \"355\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 355\n                },\n                {\n                    \"id\": 10244,\n                    \"level\": \"356\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 356\n                },\n                {\n                    \"id\": 10245,\n                    \"level\": \"357\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 357\n                },\n                {\n                    \"id\": 10246,\n                    \"level\": \"358\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 358\n                },\n                {\n                    \"id\": 10247,\n                    \"level\": \"359\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 359\n                },\n                {\n                    \"id\": 10248,\n                    \"level\": \"360\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 360\n                },\n                {\n                    \"id\": 10249,\n                    \"level\": \"361\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 361\n                },\n                {\n                    \"id\": 10250,\n                    \"level\": \"362\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 362\n                },\n                {\n                    \"id\": 10251,\n                    \"level\": \"363\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 363\n                },\n                {\n                    \"id\": 10252,\n                    \"level\": \"364\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 364\n                },\n                {\n                    \"id\": 10253,\n                    \"level\": \"365\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 365\n                },\n                {\n                    \"id\": 10254,\n                    \"level\": \"366\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 366\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1693,\n            \"alias\": \"snow_package\",\n            \"name\": \"Snow Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2788,\n                    \"benefit_type\": {\n                        \"id\": 29,\n                        \"benefit_type_id\": 52,\n                        \"name\": \"Australian Snow\",\n                        \"description\": \"Australian Snow\",\n                        \"key\": \"snow\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2777,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10255,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1694,\n            \"alias\": \"motorcycle_moped_pack\",\n            \"name\": \"Motorcycle / Moped Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2789,\n                    \"benefit_type\": {\n                        \"id\": 30,\n                        \"benefit_type_id\": 53,\n                        \"name\": \"Australian Motorcycle\",\n                        \"description\": \"Australian Motorcycle\",\n                        \"key\": \"motorcycle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2778,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10256,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1695,\n            \"alias\": \"cruise_pack\",\n            \"name\": \"Cruise Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2790,\n                    \"benefit_type\": {\n                        \"id\": 31,\n                        \"benefit_type_id\": 54,\n                        \"name\": \"Australian Cruise\",\n                        \"description\": \"Australian Cruise\",\n                        \"key\": \"cruise\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2779,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10257,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1696,\n            \"alias\": \"pet_cover\",\n            \"name\": \"Pet Cover\",\n            \"coverages\": [\n                {\n                    \"id\": 2791,\n                    \"benefit_type\": {\n                        \"id\": 32,\n                        \"benefit_type_id\": 19,\n                        \"name\": \"Australian Pet Cover\",\n                        \"description\": \"Australian Pet Cover\",\n                        \"key\": \"pet_cover_kennel_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2780,\n                            \"value\": 500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10258,\n                    \"level\": \"300\",\n                    \"type\": \"$ per day\",\n                    \"type_id\": 3,\n                    \"is_default\": true,\n                    \"value\": 300\n                }\n            ],\n            \"attributes\": []\n        }\n    ]\n}"}],"_postman_id":"c99c6317-68de-499e-a980-0268d96728a8"},{"name":"Get Destination Groups","event":[{"listen":"test","script":{"exec":["pm.environment.set('order_number', JSON.parse(responseBody).data.order_number)"],"type":"text/javascript","packages":{},"id":"9f22136c-759f-4f41-921b-20223872a5a4"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"9775fa2d-7d3b-4adc-89f5-40f6c8459790"}}],"id":"679d4ae4-d4a1-4f3a-a7d0-b6e775b1f130","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"quote_id\": \"{{quote_id}}\",\n    \"currency_id\": \"GBP\",\n    \"sanction_search_id\": 0,\n    \"product_id\": 1013,\n    \"start_at\": \"\",\n    \"end_at\": \"\",\n    \"signed_at\": \"2023-01-09\",\n    \"deposit_at\": \"\",\n    \"details\": [\n        {\n            \"type\": \"deductible\",\n            \"detail\": \"excess_fee\",\n            \"amount\": 100\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"base_package\"\n        },\n        {\n            \"type\": \"package\",\n            \"product_package_id\": \"winter_sports_package\"\n        }\n    ],\n    \"applicants\": [\n        {\n            \"first_name\": \"Jen\",\n            \"middle_name\": \"Ferry\",\n            \"last_name\": \"Beck KM\",\n            \"dob\": \"1970-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"ascifo@battleface.com\",\n            \"contact_number\": \"324234234\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"GB\",\n            \"is_main\": true,\n            \"trip_cost\": 1\n        },\n        {\n            \"first_name\": \"Jane\",\n            \"middle_name\": \"Fe\",\n            \"last_name\": \"Johnson KM\",\n            \"dob\": \"2009-01-05\",\n            \"age_at_travel\": 35,\n            \"email\": \"ascifo@battleface.com\",\n            \"contact_number\": \"324234234\",\n            \"address\": \"123 test street\",\n            \"city\": \"test city\",\n            \"post_code\": \"0\",\n            \"country_code\": \"GB\",\n            \"is_main\": false,\n            \"trip_cost\": 1\n        }\n    ],\n    \"beneficiary\": {\n        \"first_name\": \"Ben\",\n        \"middle_name\": \"Fe\",\n        \"last_name\": \"Johnson KM\",\n        \"email\": \"testing@battleface.com\",\n        \"contact_number\": \"324234234\",\n        \"trip_cost\": 1\n    },\n    \"guardian\": {\n        \"first_name\": \"Ben\",\n        \"middle_name\": \"Fe\",\n        \"last_name\": \"Johnson KM\",\n        \"email\": \"testing@battleface.com\",\n        \"contact_number\": \"324234234\",\n        \"trip_cost\": 1,\n        \"dob\": \"2005-01-01\",\n        \"postal_address\":\"Some Street in the world\"\n    },\n    \"destinations\": [\n        {\n            \"country_code\":\"GB\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/products/{{api_product_id}}/destination/groups","urlObject":{"path":["api","partner","products","{{api_product_id}}","destination","groups"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"7f039a97-4bfa-4c4f-96b7-4875c738c39c","name":"Get Destination Groups","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/products/1013/destination/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 21 Dec 2023 09:21:03 GMT"},{"key":"Server","value":"nginx/1.25.2"},{"key":"X-Powered-By","value":"PHP/8.1.20"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"TIER 1\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"TIER 2\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"TIER 3\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://api.insurance.lcl/api/v2/products/1013/destination/groups?page=1\",\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"path\": \"http://api.insurance.lcl/api/v2/products/1013/destination/groups\",\n        \"per_page\": 500,\n        \"to\": 3\n    },\n    \"processed\": false\n}"}],"_postman_id":"679d4ae4-d4a1-4f3a-a7d0-b6e775b1f130"}],"id":"d94ca2a8-9ec9-405c-86c9-2ddfd0aa38c6","_postman_id":"d94ca2a8-9ec9-405c-86c9-2ddfd0aa38c6","description":"","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}}],"id":"73c6d98c-e583-4d1b-a305-9d033e98bd26","description":"<p>Additional endpoints you may need to handle various exception scenarios.</p>\n","_postman_id":"73c6d98c-e583-4d1b-a305-9d033e98bd26","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}},{"name":"Related Data","item":[{"name":"Countries","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Countries Request Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"id":"e8624790-6713-440a-bdd3-e808c53ee790"}}],"id":"5cb1236b-0c99-4208-b8e2-929e7cffc0f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/countries","description":"<p>Use this to receive the list of home countries and destination countries allowed for this product. It also provides a list of host country states, if applicable.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will be an array of objects. Each object will have the below parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>host_countries</td>\n<td>See Host Countries reference below.</td>\n</tr>\n<tr>\n<td>destination_countries</td>\n<td>See Destination Countries reference below.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"host-countries\">Host Countries</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Country code in ISO 3166 alpha-2 format.</td>\n<td>\"US\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Country name</td>\n<td>\"United States\"</td>\n</tr>\n<tr>\n<td>is_disabled</td>\n<td>Boolean value that determines if the associated host country is disabled.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>states</td>\n<td>See States reference below.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"destination-countries\">Destination Countries</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Country code in ISO 3166 alpha-2 format.</td>\n<td>\"US\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Country name</td>\n<td>\"United States\"</td>\n</tr>\n<tr>\n<td>is_disabled</td>\n<td>Boolean value that determines if the associated destination country is disabled.</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"states\">States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>2 letter code for state in ISO 3166-2 standard. Can also be an empty string for non-applicable countries.  <br /><a href=\"https://www.iso.org/obp/ui/#iso:code:3166:US\">https://www.iso.org/obp/ui/#iso:code:3166:US</a></td>\n<td>\"OH\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>State name</td>\n<td>\"Ohio\"</td>\n</tr>\n<tr>\n<td>is_disabled</td>\n<td>Boolean value that determines if the associated state is disabled.</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"fb66d410-368c-4c13-9c73-1bada062edbc","id":"fb66d410-368c-4c13-9c73-1bada062edbc","name":"Related Data","type":"folder"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","countries"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"fe1abb19-8ab4-44cb-a7f1-c186eb136c82","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 11:44:30 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"host_countries\": [\n            {\n                \"code\": \"US\",\n                \"name\": \"United States\",\n                \"is_disabled\": false,\n                \"states\": [\n                    {\n                        \"code\": \"AL\",\n                        \"name\": \"Alabama\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"AK\",\n                        \"name\": \"Alaska\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"AZ\",\n                        \"name\": \"Arizona\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"AR\",\n                        \"name\": \"Arkansas\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"CA\",\n                        \"name\": \"California\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"CO\",\n                        \"name\": \"Colorado\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"CT\",\n                        \"name\": \"Connecticut\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"DE\",\n                        \"name\": \"Delaware\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"FL\",\n                        \"name\": \"Florida\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"GA\",\n                        \"name\": \"Georgia\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"HI\",\n                        \"name\": \"Hawaii\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"ID\",\n                        \"name\": \"Idaho\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"IL\",\n                        \"name\": \"Illinois\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"IN\",\n                        \"name\": \"Indiana\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"IA\",\n                        \"name\": \"Iowa\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"KS\",\n                        \"name\": \"Kansas\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"KY\",\n                        \"name\": \"Kentucky\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"LA\",\n                        \"name\": \"Louisiana\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"ME\",\n                        \"name\": \"Maine\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"MD\",\n                        \"name\": \"Maryland\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"MA\",\n                        \"name\": \"Massachusetts\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"MI\",\n                        \"name\": \"Michigan\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"MN\",\n                        \"name\": \"Minnesota\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"MS\",\n                        \"name\": \"Mississippi\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"MO\",\n                        \"name\": \"Missouri\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"MT\",\n                        \"name\": \"Montana\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"NE\",\n                        \"name\": \"Nebraska\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"NV\",\n                        \"name\": \"Nevada\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"NH\",\n                        \"name\": \"New Hampshire\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"NJ\",\n                        \"name\": \"New Jersey\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"NM\",\n                        \"name\": \"New Mexico\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"NY\",\n                        \"name\": \"New York\",\n                        \"is_disabled\": true\n                    },\n                    {\n                        \"code\": \"NC\",\n                        \"name\": \"North Carolina\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"ND\",\n                        \"name\": \"North Dakota\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"OH\",\n                        \"name\": \"Ohio\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"OK\",\n                        \"name\": \"Oklahoma\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"OR\",\n                        \"name\": \"Oregon\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"PA\",\n                        \"name\": \"Pennsylvania\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"RI\",\n                        \"name\": \"Rhode Island\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"SC\",\n                        \"name\": \"South Carolina\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"SD\",\n                        \"name\": \"South Dakota\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"TN\",\n                        \"name\": \"Tennessee\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"TX\",\n                        \"name\": \"Texas\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"UT\",\n                        \"name\": \"Utah\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"VT\",\n                        \"name\": \"Vermont\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"VA\",\n                        \"name\": \"Virginia\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"WA\",\n                        \"name\": \"Washington\",\n                        \"is_disabled\": true\n                    },\n                    {\n                        \"code\": \"WV\",\n                        \"name\": \"West Virginia\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"WI\",\n                        \"name\": \"Wisconsin\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"WY\",\n                        \"name\": \"Wyoming\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"DC\",\n                        \"name\": \"District of Columbia\",\n                        \"is_disabled\": false\n                    }\n                ]\n            },\n            {\n                \"code\": \"GB\",\n                \"name\": \"United Kingdom\",\n                \"is_disabled\": false,\n                \"states\": []\n            }\n        ],\n        \"destination_countries\": [\n            {\n                \"code\": \"US\",\n                \"name\": \"United States\",\n                \"is_disabled\": false\n            }\n        ]\n    }\n}"},{"id":"619e2f61-932a-4031-b9f2-288a474789f1","name":"Australian Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 12:36:35 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"host_countries\": [\n            {\n                \"code\": \"AU\",\n                \"name\": \"Australia\",\n                \"is_disabled\": false,\n                \"states\": [\n                    {\n                        \"code\": \"NSW\",\n                        \"name\": \"New South Wales\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"VIC\",\n                        \"name\": \"Victoria\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"QLD\",\n                        \"name\": \"Queensland\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"WA\",\n                        \"name\": \"Western Australia\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"SA\",\n                        \"name\": \"South Australia\",\n                        \"is_disabled\": false\n                    },\n                    {\n                        \"code\": \"TAS\",\n                        \"name\": \"Tasmania\",\n                        \"is_disabled\": false\n                    }\n                ]\n            }\n        ],\n        \"destination_countries\": [\n            {\n                \"code\": \"US\",\n                \"name\": \"United States\",\n                \"is_disabled\": false\n            },\n            {\n                \"code\": \"PR\",\n                \"name\": \"Puerto Rico\",\n                \"is_disabled\": false\n            }\n        ]\n    }\n}"}],"_postman_id":"5cb1236b-0c99-4208-b8e2-929e7cffc0f5"},{"name":"Host Countries","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Host Countries Request Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","pm.environment.set(\"host_country_id\", \r","    JSON.parse(responseBody).data.find((element) => element.code == pm.environment.get(\"country_code\")\r",").id);"],"type":"text/javascript","id":"966ceca5-5a18-47de-9d06-fcb94b4fef0e"}}],"id":"ba420e5a-73a4-44a4-9dca-449fe2153093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-countries","description":"<p>Use this to receive the list of home countries allowed for this product. The aliases should map to the country name, as well as the alternative_names. It also provides a list of states, if applicable.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will be an array of objects. Each object will have the below parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Host country ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Country code in ISO 3166 alpha-2 format.</td>\n<td>\"US\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Country Name</td>\n<td>\"United States\"</td>\n</tr>\n<tr>\n<td>is_disabled</td>\n<td>Boolean value that determines if the associated host country is disabled.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>aliases</td>\n<td>Array of objects which contain abbreviated aliases for a country.</td>\n<td>[  <br />{  <br />\"alias\": \"USA\"  <br />}  <br />],</td>\n</tr>\n<tr>\n<td>alternative_names</td>\n<td>Array of objects which contain alternative names for a country.</td>\n<td>[  <br />{  <br />\"name\": \"Alabama\"  <br />},  <br />]</td>\n</tr>\n<tr>\n<td>states</td>\n<td>See states reference below.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"states\">States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Host country state ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td>code</td>\n<td>2 letter code for state in ISO 3166-2 standard. Can also be an empty string for non-applicable countries.  <br /><a href=\"https://www.iso.org/obp/ui/#iso:code:3166:US\">https://www.iso.org/obp/ui/#iso:code:3166:US</a></td>\n<td>\"OH\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>State name</td>\n<td>\"Ohio\"</td>\n</tr>\n<tr>\n<td>is_disabled</td>\n<td>Boolean value that determines if the associated host country is disabled.</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"fb66d410-368c-4c13-9c73-1bada062edbc","id":"fb66d410-368c-4c13-9c73-1bada062edbc","name":"Related Data","type":"folder"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","host-countries"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"8395073e-4627-49ec-af14-d123d26192cd","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 11:44:30 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 12636,\n            \"code\": \"US\",\n            \"name\": \"United States\",\n            \"is_disabled\": false,\n            \"aliases\": [\n                {\n                    \"alias\": \"USA\"\n                }\n            ],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Alabama\"\n                },\n                {\n                    \"name\": \"Alaska\"\n                },\n                {\n                    \"name\": \"Arizona\"\n                },\n                {\n                    \"name\": \"Arkansas\"\n                },\n                {\n                    \"name\": \"California\"\n                },\n                {\n                    \"name\": \"Colorado\"\n                },\n                {\n                    \"name\": \"Connecticut\"\n                },\n                {\n                    \"name\": \"Delaware\"\n                },\n                {\n                    \"name\": \"Florida\"\n                },\n                {\n                    \"name\": \"Georgia\"\n                },\n                {\n                    \"name\": \"Hawaii\"\n                },\n                {\n                    \"name\": \"Idaho\"\n                },\n                {\n                    \"name\": \"Illinois\"\n                },\n                {\n                    \"name\": \"Indiana\"\n                },\n                {\n                    \"name\": \"Iowa\"\n                },\n                {\n                    \"name\": \"Kansas\"\n                },\n                {\n                    \"name\": \"Kentucky\"\n                },\n                {\n                    \"name\": \"Louisiana\"\n                },\n                {\n                    \"name\": \"Maine\"\n                },\n                {\n                    \"name\": \"Maryland\"\n                },\n                {\n                    \"name\": \"Massachusetts\"\n                },\n                {\n                    \"name\": \"Michigan\"\n                },\n                {\n                    \"name\": \"Minnesota\"\n                },\n                {\n                    \"name\": \"Mississippi\"\n                },\n                {\n                    \"name\": \"Missouri\"\n                },\n                {\n                    \"name\": \"Montana\"\n                },\n                {\n                    \"name\": \"Nebraska\"\n                },\n                {\n                    \"name\": \"Nevada\"\n                },\n                {\n                    \"name\": \"New Hampshire\"\n                },\n                {\n                    \"name\": \"New Jersey\"\n                },\n                {\n                    \"name\": \"New Mexico\"\n                },\n                {\n                    \"name\": \"New York\"\n                },\n                {\n                    \"name\": \"North Carolina\"\n                },\n                {\n                    \"name\": \"North Dakota\"\n                },\n                {\n                    \"name\": \"Ohio\"\n                },\n                {\n                    \"name\": \"Oklahoma\"\n                },\n                {\n                    \"name\": \"Oregon\"\n                },\n                {\n                    \"name\": \"Pennsylvania\"\n                },\n                {\n                    \"name\": \"Rhode Island\"\n                },\n                {\n                    \"name\": \"South Carolina\"\n                },\n                {\n                    \"name\": \"South Dakota\"\n                },\n                {\n                    \"name\": \"Tennessee\"\n                },\n                {\n                    \"name\": \"Texas\"\n                },\n                {\n                    \"name\": \"Utah\"\n                },\n                {\n                    \"name\": \"Vermont\"\n                },\n                {\n                    \"name\": \"Virginia\"\n                },\n                {\n                    \"name\": \"Washington\"\n                },\n                {\n                    \"name\": \"West Virginia\"\n                },\n                {\n                    \"name\": \"Wisconsin\"\n                },\n                {\n                    \"name\": \"Wyoming\"\n                }\n            ],\n            \"states\": [\n                {\n                    \"id\": 10999,\n                    \"code\": \"AL\",\n                    \"name\": \"Alabama\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11000,\n                    \"code\": \"AK\",\n                    \"name\": \"Alaska\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11001,\n                    \"code\": \"AZ\",\n                    \"name\": \"Arizona\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11002,\n                    \"code\": \"AR\",\n                    \"name\": \"Arkansas\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11003,\n                    \"code\": \"CA\",\n                    \"name\": \"California\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11004,\n                    \"code\": \"CO\",\n                    \"name\": \"Colorado\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11005,\n                    \"code\": \"CT\",\n                    \"name\": \"Connecticut\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11006,\n                    \"code\": \"DE\",\n                    \"name\": \"Delaware\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11007,\n                    \"code\": \"FL\",\n                    \"name\": \"Florida\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11008,\n                    \"code\": \"GA\",\n                    \"name\": \"Georgia\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11009,\n                    \"code\": \"HI\",\n                    \"name\": \"Hawaii\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11010,\n                    \"code\": \"ID\",\n                    \"name\": \"Idaho\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11011,\n                    \"code\": \"IL\",\n                    \"name\": \"Illinois\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11012,\n                    \"code\": \"IN\",\n                    \"name\": \"Indiana\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11013,\n                    \"code\": \"IA\",\n                    \"name\": \"Iowa\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11014,\n                    \"code\": \"KS\",\n                    \"name\": \"Kansas\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11015,\n                    \"code\": \"KY\",\n                    \"name\": \"Kentucky\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11016,\n                    \"code\": \"LA\",\n                    \"name\": \"Louisiana\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11017,\n                    \"code\": \"ME\",\n                    \"name\": \"Maine\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11018,\n                    \"code\": \"MD\",\n                    \"name\": \"Maryland\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11019,\n                    \"code\": \"MA\",\n                    \"name\": \"Massachusetts\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11020,\n                    \"code\": \"MI\",\n                    \"name\": \"Michigan\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11021,\n                    \"code\": \"MN\",\n                    \"name\": \"Minnesota\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11022,\n                    \"code\": \"MS\",\n                    \"name\": \"Mississippi\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11023,\n                    \"code\": \"MO\",\n                    \"name\": \"Missouri\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11024,\n                    \"code\": \"MT\",\n                    \"name\": \"Montana\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11025,\n                    \"code\": \"NE\",\n                    \"name\": \"Nebraska\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11026,\n                    \"code\": \"NV\",\n                    \"name\": \"Nevada\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11027,\n                    \"code\": \"NH\",\n                    \"name\": \"New Hampshire\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11028,\n                    \"code\": \"NJ\",\n                    \"name\": \"New Jersey\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11029,\n                    \"code\": \"NM\",\n                    \"name\": \"New Mexico\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11030,\n                    \"code\": \"NY\",\n                    \"name\": \"New York\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11031,\n                    \"code\": \"NC\",\n                    \"name\": \"North Carolina\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11032,\n                    \"code\": \"ND\",\n                    \"name\": \"North Dakota\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11033,\n                    \"code\": \"OH\",\n                    \"name\": \"Ohio\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11034,\n                    \"code\": \"OK\",\n                    \"name\": \"Oklahoma\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11035,\n                    \"code\": \"OR\",\n                    \"name\": \"Oregon\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11036,\n                    \"code\": \"PA\",\n                    \"name\": \"Pennsylvania\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11037,\n                    \"code\": \"RI\",\n                    \"name\": \"Rhode Island\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11038,\n                    \"code\": \"SC\",\n                    \"name\": \"South Carolina\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11039,\n                    \"code\": \"SD\",\n                    \"name\": \"South Dakota\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11040,\n                    \"code\": \"TN\",\n                    \"name\": \"Tennessee\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11041,\n                    \"code\": \"TX\",\n                    \"name\": \"Texas\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11042,\n                    \"code\": \"UT\",\n                    \"name\": \"Utah\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11043,\n                    \"code\": \"VT\",\n                    \"name\": \"Vermont\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11044,\n                    \"code\": \"VA\",\n                    \"name\": \"Virginia\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11045,\n                    \"code\": \"WA\",\n                    \"name\": \"Washington\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11046,\n                    \"code\": \"WV\",\n                    \"name\": \"West Virginia\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11047,\n                    \"code\": \"WI\",\n                    \"name\": \"Wisconsin\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11048,\n                    \"code\": \"WY\",\n                    \"name\": \"Wyoming\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11049,\n                    \"code\": \"DC\",\n                    \"name\": \"District of Columbia\",\n                    \"is_disabled\": 0\n                }\n            ]\n        }\n    ]\n}"},{"id":"ca120260-9744-4f8b-b687-2a586233004b","name":"Australian Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 12:36:35 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 12637,\n            \"code\": \"AU\",\n            \"name\": \"Australia\",\n            \"is_disabled\": false,\n            \"aliases\": [],\n            \"alternative_names\": [],\n            \"states\": [\n                {\n                    \"id\": 11050,\n                    \"code\": \"NSW\",\n                    \"name\": \"New South Wales\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11051,\n                    \"code\": \"VIC\",\n                    \"name\": \"Victoria\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11052,\n                    \"code\": \"QLD\",\n                    \"name\": \"Queensland\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11053,\n                    \"code\": \"WA\",\n                    \"name\": \"Western Australia\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11054,\n                    \"code\": \"SA\",\n                    \"name\": \"South Australia\",\n                    \"is_disabled\": 0\n                },\n                {\n                    \"id\": 11055,\n                    \"code\": \"TAS\",\n                    \"name\": \"Tasmania\",\n                    \"is_disabled\": 0\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"ba420e5a-73a4-44a4-9dca-449fe2153093"},{"name":"Destination Countries","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Destination Countries Request Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"db7d4b9b-e8ff-4d50-8e60-0b6c00e15532"}}],"id":"1a591aad-c03a-4b55-88bf-4a78c38fb76d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/destination-countries","description":"<p>Use this to get a list of countries that are allowed as destinations for this product. Aliases and alterative names can be mapped to the country.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will be an array of objects. Each object will have the below parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Host Country ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Country code in ISO 3166 alpha-2 format.</td>\n<td>\"US\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Country Name</td>\n<td>\"United States\"</td>\n</tr>\n<tr>\n<td>is_disabled</td>\n<td>Boolean value that determines if the associated host country is disabled.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>show_sanction_node</td>\n<td>Boolean value that</td>\n<td>false</td>\n</tr>\n<tr>\n<td>aliases</td>\n<td>Array of objects which contains</td>\n<td>[  <br />{  <br />\"alias\": \"USA\"  <br />}  <br />],</td>\n</tr>\n<tr>\n<td>alternative_names</td>\n<td>Array of objects which contain</td>\n<td>[  <br />{  <br />\"name\": \"Alabama\"  <br />},  <br />]</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"fb66d410-368c-4c13-9c73-1bada062edbc","id":"fb66d410-368c-4c13-9c73-1bada062edbc","name":"Related Data","type":"folder"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","destination-countries"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"bc480d2a-4a7c-40ba-8e89-afc5887faf77","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/destination-countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 13:52:28 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 29294,\n            \"code\": \"AF\",\n            \"name\": \"Afghanistan (exc. Wakhan Corridor)\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29295,\n            \"code\": \"AX\",\n            \"name\": \"Åland Islands\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Aland islands\"\n                }\n            ]\n        },\n        {\n            \"id\": 29296,\n            \"code\": \"AL\",\n            \"name\": \"Albania\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29297,\n            \"code\": \"DZ\",\n            \"name\": \"Algeria\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29298,\n            \"code\": \"AS\",\n            \"name\": \"American Samoa\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29299,\n            \"code\": \"AD\",\n            \"name\": \"Andorra\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29300,\n            \"code\": \"AO\",\n            \"name\": \"Angola\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29301,\n            \"code\": \"AI\",\n            \"name\": \"Anguilla\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29302,\n            \"code\": \"AQ\",\n            \"name\": \"Antarctica\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29303,\n            \"code\": \"AG\",\n            \"name\": \"Antigua and Barbuda\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29304,\n            \"code\": \"AR\",\n            \"name\": \"Argentina\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29305,\n            \"code\": \"AM\",\n            \"name\": \"Armenia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29306,\n            \"code\": \"AW\",\n            \"name\": \"Aruba\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29307,\n            \"code\": \"AU\",\n            \"name\": \"Australia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29308,\n            \"code\": \"AT\",\n            \"name\": \"Austria\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29309,\n            \"code\": \"AZ\",\n            \"name\": \"Azerbaijan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29310,\n            \"code\": \"BS\",\n            \"name\": \"Bahamas\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29311,\n            \"code\": \"BH\",\n            \"name\": \"Bahrain\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29312,\n            \"code\": \"BD\",\n            \"name\": \"Bangladesh\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29313,\n            \"code\": \"BB\",\n            \"name\": \"Barbados\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29314,\n            \"code\": \"BY\",\n            \"name\": \"Belarus\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29315,\n            \"code\": \"BE\",\n            \"name\": \"Belgium\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29316,\n            \"code\": \"BZ\",\n            \"name\": \"Belize\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29317,\n            \"code\": \"BJ\",\n            \"name\": \"Benin\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29318,\n            \"code\": \"BM\",\n            \"name\": \"Bermuda\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29319,\n            \"code\": \"BT\",\n            \"name\": \"Bhutan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29320,\n            \"code\": \"BO\",\n            \"name\": \"Bolivia, Plurinational State of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29321,\n            \"code\": \"BA\",\n            \"name\": \"Bosnia and Herzegovina\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29322,\n            \"code\": \"BW\",\n            \"name\": \"Botswana\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29323,\n            \"code\": \"BR\",\n            \"name\": \"Brazil\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29324,\n            \"code\": \"BN\",\n            \"name\": \"Brunei Darussalam\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29325,\n            \"code\": \"BG\",\n            \"name\": \"Bulgaria\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29326,\n            \"code\": \"BF\",\n            \"name\": \"Burkina Faso\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29327,\n            \"code\": \"BI\",\n            \"name\": \"Burundi\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29328,\n            \"code\": \"KH\",\n            \"name\": \"Cambodia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29329,\n            \"code\": \"CM\",\n            \"name\": \"Cameroon\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29330,\n            \"code\": \"CA\",\n            \"name\": \"Canada\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29331,\n            \"code\": \"CV\",\n            \"name\": \"Cape Verde\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29332,\n            \"code\": \"KY\",\n            \"name\": \"Cayman Islands\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29333,\n            \"code\": \"CF\",\n            \"name\": \"Central African Republic\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": true,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29334,\n            \"code\": \"TD\",\n            \"name\": \"Chad\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29335,\n            \"code\": \"CL\",\n            \"name\": \"Chile\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29336,\n            \"code\": \"CN\",\n            \"name\": \"China\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29337,\n            \"code\": \"CO\",\n            \"name\": \"Colombia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29338,\n            \"code\": \"KM\",\n            \"name\": \"Comoros\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29339,\n            \"code\": \"CG\",\n            \"name\": \"Congo\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29340,\n            \"code\": \"CD\",\n            \"name\": \"Congo, the Democratic Republic of the\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29341,\n            \"code\": \"CR\",\n            \"name\": \"Costa Rica\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29342,\n            \"code\": \"CI\",\n            \"name\": \"Côte d'Ivoire\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29343,\n            \"code\": \"HR\",\n            \"name\": \"Croatia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29344,\n            \"code\": \"CU\",\n            \"name\": \"Cuba\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": true,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29345,\n            \"code\": \"CY\",\n            \"name\": \"Cyprus\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29346,\n            \"code\": \"CZ\",\n            \"name\": \"Czech Republic\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29347,\n            \"code\": \"DK\",\n            \"name\": \"Denmark\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29348,\n            \"code\": \"DJ\",\n            \"name\": \"Djibouti\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29349,\n            \"code\": \"DM\",\n            \"name\": \"Dominica\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29350,\n            \"code\": \"DO\",\n            \"name\": \"Dominican Republic\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29351,\n            \"code\": \"EC\",\n            \"name\": \"Ecuador\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Galápagos Islands\"\n                }\n            ]\n        },\n        {\n            \"id\": 29352,\n            \"code\": \"EG\",\n            \"name\": \"Egypt\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29353,\n            \"code\": \"SV\",\n            \"name\": \"El Salvador\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29354,\n            \"code\": \"GQ\",\n            \"name\": \"Equatorial Guinea\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29355,\n            \"code\": \"ER\",\n            \"name\": \"Eritrea\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29356,\n            \"code\": \"EE\",\n            \"name\": \"Estonia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29357,\n            \"code\": \"ET\",\n            \"name\": \"Ethiopia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29358,\n            \"code\": \"FJ\",\n            \"name\": \"Fiji\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29359,\n            \"code\": \"FI\",\n            \"name\": \"Finland\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29360,\n            \"code\": \"FR\",\n            \"name\": \"France\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29361,\n            \"code\": \"GF\",\n            \"name\": \"French Guiana\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29362,\n            \"code\": \"PF\",\n            \"name\": \"French Polynesia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29363,\n            \"code\": \"GA\",\n            \"name\": \"Gabon\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29364,\n            \"code\": \"GM\",\n            \"name\": \"Gambia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29365,\n            \"code\": \"GE\",\n            \"name\": \"Georgia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29366,\n            \"code\": \"DE\",\n            \"name\": \"Germany\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29367,\n            \"code\": \"GH\",\n            \"name\": \"Ghana\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29368,\n            \"code\": \"GI\",\n            \"name\": \"Gibraltar\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29369,\n            \"code\": \"GR\",\n            \"name\": \"Greece\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Corfu\"\n                },\n                {\n                    \"name\": \"Crete\"\n                },\n                {\n                    \"name\": \"Ionian Islands\"\n                },\n                {\n                    \"name\": \"Kos\"\n                },\n                {\n                    \"name\": \"Rhodes\"\n                }\n            ]\n        },\n        {\n            \"id\": 29370,\n            \"code\": \"GL\",\n            \"name\": \"Greenland\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29371,\n            \"code\": \"GD\",\n            \"name\": \"Grenada\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29372,\n            \"code\": \"GP\",\n            \"name\": \"Guadeloupe\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29373,\n            \"code\": \"GU\",\n            \"name\": \"Guam\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29374,\n            \"code\": \"GT\",\n            \"name\": \"Guatemala\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29375,\n            \"code\": \"GG\",\n            \"name\": \"Guernsey\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29376,\n            \"code\": \"GN\",\n            \"name\": \"Guinea\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29377,\n            \"code\": \"GW\",\n            \"name\": \"Guinea-Bissau\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29378,\n            \"code\": \"GY\",\n            \"name\": \"Guyana\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29379,\n            \"code\": \"HT\",\n            \"name\": \"Haiti\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29380,\n            \"code\": \"VA\",\n            \"name\": \"Holy See (Vatican City State)\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29381,\n            \"code\": \"HN\",\n            \"name\": \"Honduras\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29382,\n            \"code\": \"HK\",\n            \"name\": \"Hong Kong\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29383,\n            \"code\": \"HU\",\n            \"name\": \"Hungary\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29384,\n            \"code\": \"IS\",\n            \"name\": \"Iceland\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29385,\n            \"code\": \"IN\",\n            \"name\": \"India\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29386,\n            \"code\": \"ID\",\n            \"name\": \"Indonesia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Bali\"\n                }\n            ]\n        },\n        {\n            \"id\": 29387,\n            \"code\": \"IR\",\n            \"name\": \"Iran, Islamic Republic of\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": true,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29388,\n            \"code\": \"IQ\",\n            \"name\": \"Iraq\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29389,\n            \"code\": \"IE\",\n            \"name\": \"Ireland, Republic of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29390,\n            \"code\": \"IM\",\n            \"name\": \"Isle of Man\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29391,\n            \"code\": \"IL\",\n            \"name\": \"Israel\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29392,\n            \"code\": \"IT\",\n            \"name\": \"Italy\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29393,\n            \"code\": \"JM\",\n            \"name\": \"Jamaica\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29394,\n            \"code\": \"JP\",\n            \"name\": \"Japan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29395,\n            \"code\": \"JE\",\n            \"name\": \"Jersey\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29396,\n            \"code\": \"JO\",\n            \"name\": \"Jordan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29397,\n            \"code\": \"KZ\",\n            \"name\": \"Kazakhstan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29398,\n            \"code\": \"KE\",\n            \"name\": \"Kenya\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29399,\n            \"code\": \"KI\",\n            \"name\": \"Kiribati\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29400,\n            \"code\": \"KP\",\n            \"name\": \"Korea, Democratic People's Republic of\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": true,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29401,\n            \"code\": \"KR\",\n            \"name\": \"Korea, Republic of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29402,\n            \"code\": \"KW\",\n            \"name\": \"Kuwait\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29403,\n            \"code\": \"KG\",\n            \"name\": \"Kyrgyzstan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29404,\n            \"code\": \"LA\",\n            \"name\": \"Lao People's Democratic Republic\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29405,\n            \"code\": \"LV\",\n            \"name\": \"Latvia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29406,\n            \"code\": \"LB\",\n            \"name\": \"Lebanon\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29407,\n            \"code\": \"LS\",\n            \"name\": \"Lesotho\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29408,\n            \"code\": \"LR\",\n            \"name\": \"Liberia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29409,\n            \"code\": \"LY\",\n            \"name\": \"Libya\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29410,\n            \"code\": \"LI\",\n            \"name\": \"Liechtenstein\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29411,\n            \"code\": \"LT\",\n            \"name\": \"Lithuania\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29412,\n            \"code\": \"LU\",\n            \"name\": \"Luxembourg\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29413,\n            \"code\": \"MK\",\n            \"name\": \"Macedonia, the Former Yugoslav Republic of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29414,\n            \"code\": \"MG\",\n            \"name\": \"Madagascar\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29415,\n            \"code\": \"MW\",\n            \"name\": \"Malawi\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29416,\n            \"code\": \"MY\",\n            \"name\": \"Malaysia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29417,\n            \"code\": \"MV\",\n            \"name\": \"Maldives\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29418,\n            \"code\": \"ML\",\n            \"name\": \"Mali\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29419,\n            \"code\": \"MT\",\n            \"name\": \"Malta\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29420,\n            \"code\": \"MH\",\n            \"name\": \"Marshall Islands\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29421,\n            \"code\": \"MQ\",\n            \"name\": \"Martinique\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29422,\n            \"code\": \"MR\",\n            \"name\": \"Mauritania\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29423,\n            \"code\": \"MU\",\n            \"name\": \"Mauritius\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29424,\n            \"code\": \"MX\",\n            \"name\": \"Mexico\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29425,\n            \"code\": \"FM\",\n            \"name\": \"Micronesia, Federated States of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29426,\n            \"code\": \"MD\",\n            \"name\": \"Moldova, Republic of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29427,\n            \"code\": \"MC\",\n            \"name\": \"Monaco\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29428,\n            \"code\": \"MN\",\n            \"name\": \"Mongolia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29429,\n            \"code\": \"ME\",\n            \"name\": \"Montenegro\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29430,\n            \"code\": \"MS\",\n            \"name\": \"Montserrat\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29431,\n            \"code\": \"MA\",\n            \"name\": \"Morocco\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29432,\n            \"code\": \"MZ\",\n            \"name\": \"Mozambique\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29433,\n            \"code\": \"MM\",\n            \"name\": \"Myanmar\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29434,\n            \"code\": \"NA\",\n            \"name\": \"Namibia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29435,\n            \"code\": \"NR\",\n            \"name\": \"Nauru\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29436,\n            \"code\": \"NP\",\n            \"name\": \"Nepal\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29437,\n            \"code\": \"NL\",\n            \"name\": \"Netherlands\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29438,\n            \"code\": \"NC\",\n            \"name\": \"New Caledonia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29439,\n            \"code\": \"NZ\",\n            \"name\": \"New Zealand\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29440,\n            \"code\": \"NI\",\n            \"name\": \"Nicaragua\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29441,\n            \"code\": \"NE\",\n            \"name\": \"Niger\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29442,\n            \"code\": \"NG\",\n            \"name\": \"Nigeria\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29443,\n            \"code\": \"NU\",\n            \"name\": \"Niue\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29444,\n            \"code\": \"NO\",\n            \"name\": \"Norway\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29445,\n            \"code\": \"OM\",\n            \"name\": \"Oman\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29446,\n            \"code\": \"PK\",\n            \"name\": \"Pakistan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29447,\n            \"code\": \"PW\",\n            \"name\": \"Palau\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29448,\n            \"code\": \"PS\",\n            \"name\": \"Palestine, State of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29449,\n            \"code\": \"PA\",\n            \"name\": \"Panama\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29450,\n            \"code\": \"PG\",\n            \"name\": \"Papua New Guinea\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29451,\n            \"code\": \"PY\",\n            \"name\": \"Paraguay\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29452,\n            \"code\": \"PE\",\n            \"name\": \"Peru\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29453,\n            \"code\": \"PH\",\n            \"name\": \"Philippines\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29454,\n            \"code\": \"PL\",\n            \"name\": \"Poland\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29455,\n            \"code\": \"PT\",\n            \"name\": \"Portugal\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29456,\n            \"code\": \"QA\",\n            \"name\": \"Qatar\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29457,\n            \"code\": \"RE\",\n            \"name\": \"Réunion\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29458,\n            \"code\": \"RO\",\n            \"name\": \"Romania\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29459,\n            \"code\": \"RU\",\n            \"name\": \"Russian Federation\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29460,\n            \"code\": \"RW\",\n            \"name\": \"Rwanda\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29461,\n            \"code\": \"BL\",\n            \"name\": \"Saint Barthélemy\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29462,\n            \"code\": \"SH\",\n            \"name\": \"Saint Helena, Ascension and Tristan da Cunha\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29463,\n            \"code\": \"KN\",\n            \"name\": \"Saint Kitts and Nevis\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29464,\n            \"code\": \"LC\",\n            \"name\": \"Saint Lucia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29465,\n            \"code\": \"MF\",\n            \"name\": \"Saint Martin (French part)\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29466,\n            \"code\": \"VC\",\n            \"name\": \"Saint Vincent and the Grenadines\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29467,\n            \"code\": \"WS\",\n            \"name\": \"Samoa\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29468,\n            \"code\": \"SM\",\n            \"name\": \"San Marino\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29469,\n            \"code\": \"ST\",\n            \"name\": \"Sao Tome and Principe\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29470,\n            \"code\": \"SA\",\n            \"name\": \"Saudi Arabia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29471,\n            \"code\": \"SN\",\n            \"name\": \"Senegal\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29472,\n            \"code\": \"RS\",\n            \"name\": \"Serbia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29473,\n            \"code\": \"SC\",\n            \"name\": \"Seychelles\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29474,\n            \"code\": \"SL\",\n            \"name\": \"Sierra Leone\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29475,\n            \"code\": \"SG\",\n            \"name\": \"Singapore\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29476,\n            \"code\": \"SK\",\n            \"name\": \"Slovakia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29477,\n            \"code\": \"SI\",\n            \"name\": \"Slovenia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29478,\n            \"code\": \"SB\",\n            \"name\": \"Solomon Islands\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29479,\n            \"code\": \"SO\",\n            \"name\": \"Somalia\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29480,\n            \"code\": \"SQ\",\n            \"name\": \"Somaliland\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29481,\n            \"code\": \"ZA\",\n            \"name\": \"South Africa\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29482,\n            \"code\": \"SS\",\n            \"name\": \"South Sudan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29483,\n            \"code\": \"ES\",\n            \"name\": \"Spain\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Canary Islands\"\n                },\n                {\n                    \"name\": \"Fuerteventura\"\n                },\n                {\n                    \"name\": \"Gran Canaria\"\n                },\n                {\n                    \"name\": \"Lanzarote\"\n                },\n                {\n                    \"name\": \"Tenerife\"\n                }\n            ]\n        },\n        {\n            \"id\": 29484,\n            \"code\": \"LK\",\n            \"name\": \"Sri Lanka\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29485,\n            \"code\": \"SD\",\n            \"name\": \"Sudan\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29486,\n            \"code\": \"SR\",\n            \"name\": \"Suriname\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29487,\n            \"code\": \"SZ\",\n            \"name\": \"Swaziland\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29488,\n            \"code\": \"SE\",\n            \"name\": \"Sweden\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29489,\n            \"code\": \"CH\",\n            \"name\": \"Switzerland\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29490,\n            \"code\": \"SY\",\n            \"name\": \"Syrian Arab Republic\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": true,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29491,\n            \"code\": \"TW\",\n            \"name\": \"Taiwan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29492,\n            \"code\": \"TJ\",\n            \"name\": \"Tajikistan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29493,\n            \"code\": \"TZ\",\n            \"name\": \"Tanzania, United Republic of\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29494,\n            \"code\": \"TH\",\n            \"name\": \"Thailand\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29495,\n            \"code\": \"TL\",\n            \"name\": \"Timor-Leste\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29496,\n            \"code\": \"TG\",\n            \"name\": \"Togo\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29497,\n            \"code\": \"TO\",\n            \"name\": \"Tonga\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29498,\n            \"code\": \"TT\",\n            \"name\": \"Trinidad and Tobago\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29499,\n            \"code\": \"TN\",\n            \"name\": \"Tunisia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29500,\n            \"code\": \"TR\",\n            \"name\": \"Turkey\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29501,\n            \"code\": \"TM\",\n            \"name\": \"Turkmenistan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29502,\n            \"code\": \"TV\",\n            \"name\": \"Tuvalu\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29503,\n            \"code\": \"UG\",\n            \"name\": \"Uganda\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29504,\n            \"code\": \"UA\",\n            \"name\": \"Ukraine\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29505,\n            \"code\": \"AE\",\n            \"name\": \"United Arab Emirates\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [\n                {\n                    \"alias\": \"UAE\"\n                }\n            ],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29506,\n            \"code\": \"GB\",\n            \"name\": \"United Kingdom\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [\n                {\n                    \"alias\": \"UK\"\n                }\n            ],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Ireland, Northern\"\n                },\n                {\n                    \"name\": \"Great Britain\"\n                },\n                {\n                    \"name\": \"Britain\"\n                },\n                {\n                    \"name\": \"England\"\n                },\n                {\n                    \"name\": \"Scotland\"\n                },\n                {\n                    \"name\": \"Wales\"\n                }\n            ]\n        },\n        {\n            \"id\": 29507,\n            \"code\": \"US\",\n            \"name\": \"United States\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [\n                {\n                    \"alias\": \"USA\"\n                }\n            ],\n            \"alternative_names\": [\n                {\n                    \"name\": \"Alabama\"\n                },\n                {\n                    \"name\": \"Alaska\"\n                },\n                {\n                    \"name\": \"Arizona\"\n                },\n                {\n                    \"name\": \"Arkansas\"\n                },\n                {\n                    \"name\": \"California\"\n                },\n                {\n                    \"name\": \"Colorado\"\n                },\n                {\n                    \"name\": \"Connecticut\"\n                },\n                {\n                    \"name\": \"Delaware\"\n                },\n                {\n                    \"name\": \"Florida\"\n                },\n                {\n                    \"name\": \"Georgia\"\n                },\n                {\n                    \"name\": \"Hawaii\"\n                },\n                {\n                    \"name\": \"Idaho\"\n                },\n                {\n                    \"name\": \"Illinois\"\n                },\n                {\n                    \"name\": \"Indiana\"\n                },\n                {\n                    \"name\": \"Iowa\"\n                },\n                {\n                    \"name\": \"Kansas\"\n                },\n                {\n                    \"name\": \"Kentucky\"\n                },\n                {\n                    \"name\": \"Louisiana\"\n                },\n                {\n                    \"name\": \"Maine\"\n                },\n                {\n                    \"name\": \"Maryland\"\n                },\n                {\n                    \"name\": \"Massachusetts\"\n                },\n                {\n                    \"name\": \"Michigan\"\n                },\n                {\n                    \"name\": \"Minnesota\"\n                },\n                {\n                    \"name\": \"Mississippi\"\n                },\n                {\n                    \"name\": \"Missouri\"\n                },\n                {\n                    \"name\": \"Montana\"\n                },\n                {\n                    \"name\": \"Nebraska\"\n                },\n                {\n                    \"name\": \"Nevada\"\n                },\n                {\n                    \"name\": \"New Hampshire\"\n                },\n                {\n                    \"name\": \"New Jersey\"\n                },\n                {\n                    \"name\": \"New Mexico\"\n                },\n                {\n                    \"name\": \"New York\"\n                },\n                {\n                    \"name\": \"North Carolina\"\n                },\n                {\n                    \"name\": \"North Dakota\"\n                },\n                {\n                    \"name\": \"Ohio\"\n                },\n                {\n                    \"name\": \"Oklahoma\"\n                },\n                {\n                    \"name\": \"Oregon\"\n                },\n                {\n                    \"name\": \"Pennsylvania\"\n                },\n                {\n                    \"name\": \"Rhode Island\"\n                },\n                {\n                    \"name\": \"South Carolina\"\n                },\n                {\n                    \"name\": \"South Dakota\"\n                },\n                {\n                    \"name\": \"Tennessee\"\n                },\n                {\n                    \"name\": \"Texas\"\n                },\n                {\n                    \"name\": \"Utah\"\n                },\n                {\n                    \"name\": \"Vermont\"\n                },\n                {\n                    \"name\": \"Virginia\"\n                },\n                {\n                    \"name\": \"Washington\"\n                },\n                {\n                    \"name\": \"West Virginia\"\n                },\n                {\n                    \"name\": \"Wisconsin\"\n                },\n                {\n                    \"name\": \"Wyoming\"\n                }\n            ]\n        },\n        {\n            \"id\": 29508,\n            \"code\": \"UY\",\n            \"name\": \"Uruguay\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29509,\n            \"code\": \"UZ\",\n            \"name\": \"Uzbekistan\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29510,\n            \"code\": \"VU\",\n            \"name\": \"Vanuatu\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29511,\n            \"code\": \"VE\",\n            \"name\": \"Venezuela, Bolivarian Republic of\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29512,\n            \"code\": \"VN\",\n            \"name\": \"Vietnam\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29513,\n            \"code\": \"VG\",\n            \"name\": \"Virgin Islands, British\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29514,\n            \"code\": \"WF\",\n            \"name\": \"Wallis and Futuna\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29515,\n            \"code\": \"EH\",\n            \"name\": \"Western Sahara\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29516,\n            \"code\": \"YE\",\n            \"name\": \"Yemen\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29517,\n            \"code\": \"ZM\",\n            \"name\": \"Zambia\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 29518,\n            \"code\": \"ZW\",\n            \"name\": \"Zimbabwe\",\n            \"is_disabled\": false,\n            \"show_sanction_note\": false,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 30457,\n            \"code\": \"LH\",\n            \"name\": \"Luhansk\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": true,\n            \"aliases\": [],\n            \"alternative_names\": []\n        },\n        {\n            \"id\": 30476,\n            \"code\": \"DN\",\n            \"name\": \"Donetsk\",\n            \"is_disabled\": true,\n            \"show_sanction_note\": true,\n            \"aliases\": [],\n            \"alternative_names\": []\n        }\n    ]\n}"}],"_postman_id":"1a591aad-c03a-4b55-88bf-4a78c38fb76d"},{"name":"Host Country State","event":[{"listen":"test","script":{"exec":["pm.environment.set(\"host_country_state_id\", JSON.parse(responseBody).data[0].id);\r","pm.environment.set(\"host_country_state_code\", JSON.parse(responseBody).data[0].country_state.code);"],"type":"text/javascript","id":"1f05fb83-e814-415e-ad63-177eed491a2e"}}],"id":"d0261de1-5233-41f9-baed-a3c830f15ef2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-countries/{{host_country_id}}/states","description":"<p>Get the country states available for the given country. If the state is disabled, it cannot be used.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n<tr>\n<td>host_country_id</td>\n<td>Host country ID (See \"Host Country Index\" endpoint) or Country code in ISO 3166 alpha-2 format.</td>\n<td>6 or US</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will be an array of objects. Each object will have the below parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Host Country ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>is_disabled</td>\n<td>Boolean value that determines if the associated host country is disabled.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>country_state</td>\n<td>See country states reference below.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"country-states\">Country States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>2 letter code for state in ISO 3166-2 standard. Can also be an empty string for non-applicable countries.  <br /><a href=\"https://www.iso.org/obp/ui/#iso:code:3166:US\">https://www.iso.org/obp/ui/#iso:code:3166:US</a></td>\n<td>\"OH\"</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Host country state ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td>country_id</td>\n<td>2 letter code for country in ISO 3166-1 standard.</td>\n<td>\"US\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>State name</td>\n<td>\"Ohio\"</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"fb66d410-368c-4c13-9c73-1bada062edbc","id":"fb66d410-368c-4c13-9c73-1bada062edbc","name":"Related Data","type":"folder"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","host-countries","{{host_country_id}}","states"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"2138eb86-72c2-41dc-a796-eb4bfe0af433","name":"USA Generic","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-countries/{{v_host_country_id}}/states"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 13:52:54 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 10999,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"AL\",\n                \"id\": 1,\n                \"country_id\": \"US\",\n                \"name\": \"Alabama\"\n            }\n        },\n        {\n            \"id\": 11000,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"AK\",\n                \"id\": 2,\n                \"country_id\": \"US\",\n                \"name\": \"Alaska\"\n            }\n        },\n        {\n            \"id\": 11001,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"AZ\",\n                \"id\": 3,\n                \"country_id\": \"US\",\n                \"name\": \"Arizona\"\n            }\n        },\n        {\n            \"id\": 11002,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"AR\",\n                \"id\": 4,\n                \"country_id\": \"US\",\n                \"name\": \"Arkansas\"\n            }\n        },\n        {\n            \"id\": 11003,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"CA\",\n                \"id\": 5,\n                \"country_id\": \"US\",\n                \"name\": \"California\"\n            }\n        },\n        {\n            \"id\": 11004,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"CO\",\n                \"id\": 6,\n                \"country_id\": \"US\",\n                \"name\": \"Colorado\"\n            }\n        },\n        {\n            \"id\": 11005,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"CT\",\n                \"id\": 7,\n                \"country_id\": \"US\",\n                \"name\": \"Connecticut\"\n            }\n        },\n        {\n            \"id\": 11006,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"DE\",\n                \"id\": 8,\n                \"country_id\": \"US\",\n                \"name\": \"Delaware\"\n            }\n        },\n        {\n            \"id\": 11007,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"FL\",\n                \"id\": 9,\n                \"country_id\": \"US\",\n                \"name\": \"Florida\"\n            }\n        },\n        {\n            \"id\": 11008,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"GA\",\n                \"id\": 10,\n                \"country_id\": \"US\",\n                \"name\": \"Georgia\"\n            }\n        },\n        {\n            \"id\": 11009,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"HI\",\n                \"id\": 11,\n                \"country_id\": \"US\",\n                \"name\": \"Hawaii\"\n            }\n        },\n        {\n            \"id\": 11010,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"ID\",\n                \"id\": 12,\n                \"country_id\": \"US\",\n                \"name\": \"Idaho\"\n            }\n        },\n        {\n            \"id\": 11011,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"IL\",\n                \"id\": 13,\n                \"country_id\": \"US\",\n                \"name\": \"Illinois\"\n            }\n        },\n        {\n            \"id\": 11012,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"IN\",\n                \"id\": 14,\n                \"country_id\": \"US\",\n                \"name\": \"Indiana\"\n            }\n        },\n        {\n            \"id\": 11013,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"IA\",\n                \"id\": 15,\n                \"country_id\": \"US\",\n                \"name\": \"Iowa\"\n            }\n        },\n        {\n            \"id\": 11014,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"KS\",\n                \"id\": 16,\n                \"country_id\": \"US\",\n                \"name\": \"Kansas\"\n            }\n        },\n        {\n            \"id\": 11015,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"KY\",\n                \"id\": 17,\n                \"country_id\": \"US\",\n                \"name\": \"Kentucky\"\n            }\n        },\n        {\n            \"id\": 11016,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"LA\",\n                \"id\": 18,\n                \"country_id\": \"US\",\n                \"name\": \"Louisiana\"\n            }\n        },\n        {\n            \"id\": 11017,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"ME\",\n                \"id\": 19,\n                \"country_id\": \"US\",\n                \"name\": \"Maine\"\n            }\n        },\n        {\n            \"id\": 11018,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"MD\",\n                \"id\": 20,\n                \"country_id\": \"US\",\n                \"name\": \"Maryland\"\n            }\n        },\n        {\n            \"id\": 11019,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"MA\",\n                \"id\": 21,\n                \"country_id\": \"US\",\n                \"name\": \"Massachusetts\"\n            }\n        },\n        {\n            \"id\": 11020,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"MI\",\n                \"id\": 22,\n                \"country_id\": \"US\",\n                \"name\": \"Michigan\"\n            }\n        },\n        {\n            \"id\": 11021,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"MN\",\n                \"id\": 23,\n                \"country_id\": \"US\",\n                \"name\": \"Minnesota\"\n            }\n        },\n        {\n            \"id\": 11022,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"MS\",\n                \"id\": 24,\n                \"country_id\": \"US\",\n                \"name\": \"Mississippi\"\n            }\n        },\n        {\n            \"id\": 11023,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"MO\",\n                \"id\": 25,\n                \"country_id\": \"US\",\n                \"name\": \"Missouri\"\n            }\n        },\n        {\n            \"id\": 11024,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"MT\",\n                \"id\": 26,\n                \"country_id\": \"US\",\n                \"name\": \"Montana\"\n            }\n        },\n        {\n            \"id\": 11025,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NE\",\n                \"id\": 27,\n                \"country_id\": \"US\",\n                \"name\": \"Nebraska\"\n            }\n        },\n        {\n            \"id\": 11026,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NV\",\n                \"id\": 28,\n                \"country_id\": \"US\",\n                \"name\": \"Nevada\"\n            }\n        },\n        {\n            \"id\": 11027,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NH\",\n                \"id\": 29,\n                \"country_id\": \"US\",\n                \"name\": \"New Hampshire\"\n            }\n        },\n        {\n            \"id\": 11028,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NJ\",\n                \"id\": 30,\n                \"country_id\": \"US\",\n                \"name\": \"New Jersey\"\n            }\n        },\n        {\n            \"id\": 11029,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NM\",\n                \"id\": 31,\n                \"country_id\": \"US\",\n                \"name\": \"New Mexico\"\n            }\n        },\n        {\n            \"id\": 11030,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NY\",\n                \"id\": 32,\n                \"country_id\": \"US\",\n                \"name\": \"New York\"\n            }\n        },\n        {\n            \"id\": 11031,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NC\",\n                \"id\": 33,\n                \"country_id\": \"US\",\n                \"name\": \"North Carolina\"\n            }\n        },\n        {\n            \"id\": 11032,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"ND\",\n                \"id\": 34,\n                \"country_id\": \"US\",\n                \"name\": \"North Dakota\"\n            }\n        },\n        {\n            \"id\": 11033,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"OH\",\n                \"id\": 35,\n                \"country_id\": \"US\",\n                \"name\": \"Ohio\"\n            }\n        },\n        {\n            \"id\": 11034,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"OK\",\n                \"id\": 36,\n                \"country_id\": \"US\",\n                \"name\": \"Oklahoma\"\n            }\n        },\n        {\n            \"id\": 11035,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"OR\",\n                \"id\": 37,\n                \"country_id\": \"US\",\n                \"name\": \"Oregon\"\n            }\n        },\n        {\n            \"id\": 11036,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"PA\",\n                \"id\": 38,\n                \"country_id\": \"US\",\n                \"name\": \"Pennsylvania\"\n            }\n        },\n        {\n            \"id\": 11037,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"RI\",\n                \"id\": 39,\n                \"country_id\": \"US\",\n                \"name\": \"Rhode Island\"\n            }\n        },\n        {\n            \"id\": 11038,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"SC\",\n                \"id\": 40,\n                \"country_id\": \"US\",\n                \"name\": \"South Carolina\"\n            }\n        },\n        {\n            \"id\": 11039,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"SD\",\n                \"id\": 41,\n                \"country_id\": \"US\",\n                \"name\": \"South Dakota\"\n            }\n        },\n        {\n            \"id\": 11040,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"TN\",\n                \"id\": 42,\n                \"country_id\": \"US\",\n                \"name\": \"Tennessee\"\n            }\n        },\n        {\n            \"id\": 11041,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"TX\",\n                \"id\": 43,\n                \"country_id\": \"US\",\n                \"name\": \"Texas\"\n            }\n        },\n        {\n            \"id\": 11042,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"UT\",\n                \"id\": 44,\n                \"country_id\": \"US\",\n                \"name\": \"Utah\"\n            }\n        },\n        {\n            \"id\": 11043,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"VT\",\n                \"id\": 45,\n                \"country_id\": \"US\",\n                \"name\": \"Vermont\"\n            }\n        },\n        {\n            \"id\": 11044,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"VA\",\n                \"id\": 46,\n                \"country_id\": \"US\",\n                \"name\": \"Virginia\"\n            }\n        },\n        {\n            \"id\": 11045,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"WA\",\n                \"id\": 47,\n                \"country_id\": \"US\",\n                \"name\": \"Washington\"\n            }\n        },\n        {\n            \"id\": 11046,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"WV\",\n                \"id\": 48,\n                \"country_id\": \"US\",\n                \"name\": \"West Virginia\"\n            }\n        },\n        {\n            \"id\": 11047,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"WI\",\n                \"id\": 49,\n                \"country_id\": \"US\",\n                \"name\": \"Wisconsin\"\n            }\n        },\n        {\n            \"id\": 11048,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"WY\",\n                \"id\": 50,\n                \"country_id\": \"US\",\n                \"name\": \"Wyoming\"\n            }\n        },\n        {\n            \"id\": 11049,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"DC\",\n                \"id\": 90,\n                \"country_id\": \"US\",\n                \"name\": \"District of Columbia\"\n            }\n        }\n    ]\n}"},{"id":"c7f0d39e-64c3-4630-a889-e92914662082","name":"Australian Generic","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/host-countries/{{host_country_id}}/states"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 12:37:02 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 11050,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"NSW\",\n                \"id\": 91,\n                \"country_id\": \"AU\",\n                \"name\": \"New South Wales\"\n            }\n        },\n        {\n            \"id\": 11051,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"VIC\",\n                \"id\": 92,\n                \"country_id\": \"AU\",\n                \"name\": \"Victoria\"\n            }\n        },\n        {\n            \"id\": 11052,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"QLD\",\n                \"id\": 93,\n                \"country_id\": \"AU\",\n                \"name\": \"Queensland\"\n            }\n        },\n        {\n            \"id\": 11053,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"WA\",\n                \"id\": 94,\n                \"country_id\": \"AU\",\n                \"name\": \"Western Australia\"\n            }\n        },\n        {\n            \"id\": 11054,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"SA\",\n                \"id\": 95,\n                \"country_id\": \"AU\",\n                \"name\": \"South Australia\"\n            }\n        },\n        {\n            \"id\": 11055,\n            \"is_disabled\": false,\n            \"country_state\": {\n                \"code\": \"TAS\",\n                \"id\": 96,\n                \"country_id\": \"AU\",\n                \"name\": \"Tasmania\"\n            }\n        }\n    ]\n}"}],"_postman_id":"d0261de1-5233-41f9-baed-a3c830f15ef2"},{"name":"Product Packages By State","event":[{"listen":"test","script":{"exec":["pm.test(\"Get Product Packages Request Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"id":"a2d9a3dc-8097-4ad9-b1b7-4378a5489a2c"}}],"id":"eefda881-cb68-4814-b0fc-ffd26504b205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/country/{{country_code}}/country-state/{{state_code}}/packages","description":"<p>Get a list of packages available for this product in this country state. Packages contain benefits.</p>\n<h1 id=\"request-url-parameters\">Request URL Parameters</h1>\n<p>All the below are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID. See product reference section.</td>\n<td>6</td>\n</tr>\n<tr>\n<td>country_code</td>\n<td>2 letter country code in ISO 3166 alpha-2 format.</td>\n<td>US</td>\n</tr>\n<tr>\n<td>state_code</td>\n<td>2 letter state code in ISO 3166-2 standard.</td>\n<td>OH</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-body-parameters\">Response Body Parameters</h1>\n<p>The response will be an array of objects. Each object will have the below parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Package ID, will be used downstream for pricing, validation, etc.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Human readable package name.</td>\n<td>\"Base Package\"</td>\n</tr>\n<tr>\n<td>coverages</td>\n<td>Coverages associated with the package, see \"Coverages\" section below.</td>\n<td>[  <br />{  <br />\"id\": 79,  <br />\"benefit_type\": {}  <br />},  <br />]</td>\n</tr>\n<tr>\n<td>validations</td>\n<td>Validations associated with the package, see \"Validations\" section below.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"coverages\">Coverages</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Coverage ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>benefit_type</td>\n<td>Benefit type information related to the coverage, see \"Benefit Type\" section below.</td>\n<td></td>\n</tr>\n<tr>\n<td>limits</td>\n<td>Limit information realted to the coverage, see \"Limits\" section below</td>\n<td>[]</td>\n</tr>\n<tr>\n<td>has_deductible</td>\n<td>Indicating if coverage has deductible</td>\n<td>true / false</td>\n</tr>\n<tr>\n<td>deductible</td>\n<td>Amount of deductible related to the coverage</td>\n<td>50</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"benefit-type\">Benefit Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Benefit type ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Human readable benefit name.</td>\n<td>\"Trip Cancellation\"</td>\n</tr>\n<tr>\n<td>key</td>\n<td>Useful for creating descriptions across packages without worrying about versioning or name changes.</td>\n<td>\"cancellation\"</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"limits\">Limits</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>limit ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td>value</td>\n<td>Value of the coverage limits</td>\n<td>500</td>\n</tr>\n<tr>\n<td>value_type</td>\n<td>Value type information. See \"Value Type\" section below.</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>Coverage limit type information. See \"Coverage limit type \" section below</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"value-type\">Value Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Coverage limit Value type id</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Value type of the coverage limit</td>\n<td>\"flat\"</td>\n</tr>\n<tr>\n<td>symbol</td>\n<td>Symbol representation of the value</td>\n<td>\"$\"</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"coverage-limit-type\">Coverage Limit Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Coverage limit type id</td>\n<td>1</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the coverage limit type</td>\n<td>\"day\"</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"fb66d410-368c-4c13-9c73-1bada062edbc","id":"fb66d410-368c-4c13-9c73-1bada062edbc","name":"Related Data","type":"folder"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","country","{{country_code}}","country-state","{{state_code}}","packages"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"9b284a42-834d-4886-b7e0-30ce4545f484","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/country/{{country_code}}/country-state/{{state_code}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 13:53:03 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"56"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 76,\n            \"alias\": \"base_package\",\n            \"name\": \"Base Package\",\n            \"coverages\": [\n                {\n                    \"id\": 530,\n                    \"benefit_type\": {\n                        \"id\": 49,\n                        \"benefit_type_id\": 46,\n                        \"name\": \"Tournament Cancellation\",\n                        \"description\": \"Tournament Cancellation\",\n                        \"key\": \"event_cancellation\"\n                    },\n                    \"limits\": [],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [],\n            \"attributes\": []\n        }\n    ]\n}"},{"id":"ff7168b1-701b-4423-bd67-38626ceca0ea","name":"Australian Generic With Levels","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/country/{{country_code}}/country-state/{{state_code}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 02 Dec 2022 12:38:42 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1686,\n            \"alias\": \"travel_medical_package\",\n            \"name\": \"Travel Medical Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2774,\n                    \"benefit_type\": {\n                        \"id\": 15,\n                        \"benefit_type_id\": 22,\n                        \"name\": \"Emergency Medical and additional expenses\",\n                        \"description\": \"Emergency Medical and additional expenses\",\n                        \"key\": \"travel_medical\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2763,\n                            \"value\": 2000000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2775,\n                    \"benefit_type\": {\n                        \"id\": 16,\n                        \"benefit_type_id\": 47,\n                        \"name\": \"Funeral Expenses abroad\",\n                        \"description\": \"Funeral Expenses abroad\",\n                        \"key\": \"funeral_expense_abroad\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2764,\n                            \"value\": 20000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2776,\n                    \"benefit_type\": {\n                        \"id\": 17,\n                        \"benefit_type_id\": 45,\n                        \"name\": \"Hospital benefit and confinement\",\n                        \"description\": \"Hospital benefit and confinement\",\n                        \"key\": \"hospital_room_and_board\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2765,\n                            \"value\": 1000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [\n                {\n                    \"id\": 3271,\n                    \"product_package_validation_type\": {\n                        \"id\": 1,\n                        \"name\": \"Is Required\",\n                        \"description\": \"The package is required.\"\n                    },\n                    \"value\": \"1\"\n                }\n            ],\n            \"levels\": [\n                {\n                    \"id\": 9865,\n                    \"level\": \"Unlimited\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": null\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1687,\n            \"alias\": \"trip_interruption_package\",\n            \"name\": \"Trip Interruption Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2777,\n                    \"benefit_type\": {\n                        \"id\": 18,\n                        \"benefit_type_id\": 3,\n                        \"name\": \"Australian Trip Interruption\",\n                        \"description\": \"Australian Trip Interruption\",\n                        \"key\": \"trip_interruption\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2766,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2778,\n                    \"benefit_type\": {\n                        \"id\": 19,\n                        \"benefit_type_id\": 1,\n                        \"name\": \"Australian Trip Cancellation\",\n                        \"description\": \"Australian Trip Cancellation\",\n                        \"key\": \"trip_cancellation\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2767,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2779,\n                    \"benefit_type\": {\n                        \"id\": 20,\n                        \"benefit_type_id\": 48,\n                        \"name\": \"Airfare Reimbursement\",\n                        \"description\": \"Airfare Reimbursement\",\n                        \"key\": \"airfare_reimbursement\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2768,\n                            \"value\": 2500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2780,\n                    \"benefit_type\": {\n                        \"id\": 21,\n                        \"benefit_type_id\": 28,\n                        \"name\": \"Travel resumption\",\n                        \"description\": \"Travel resumption\",\n                        \"key\": \"resumption_of_trip\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2769,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2781,\n                    \"benefit_type\": {\n                        \"id\": 22,\n                        \"benefit_type_id\": 49,\n                        \"name\": \"Hijacking\",\n                        \"description\": \"Hijacking\",\n                        \"key\": \"hijacking\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2770,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9866,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9867,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9868,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9869,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9870,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9871,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9872,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9873,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                },\n                {\n                    \"id\": 9874,\n                    \"level\": \"15000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 15000\n                },\n                {\n                    \"id\": 9875,\n                    \"level\": \"20000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 20000\n                },\n                {\n                    \"id\": 9876,\n                    \"level\": \"30000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 30000\n                },\n                {\n                    \"id\": 9877,\n                    \"level\": \"40000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 40000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1688,\n            \"alias\": \"travel_delay_package\",\n            \"name\": \"Travel Delay Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2782,\n                    \"benefit_type\": {\n                        \"id\": 23,\n                        \"benefit_type_id\": 6,\n                        \"name\": \"Australian Trip Delay\",\n                        \"description\": \"Australian Trip Delay\",\n                        \"key\": \"trip_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2771,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9878,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1689,\n            \"alias\": \"personal_accident_package\",\n            \"name\": \"Personal Accident Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2783,\n                    \"benefit_type\": {\n                        \"id\": 24,\n                        \"benefit_type_id\": 25,\n                        \"name\": \"Australian ADD\",\n                        \"description\": \"Australian ADD\",\n                        \"key\": \"non_flight_accidental_death_and_dismemberment\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2772,\n                            \"value\": 25000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9879,\n                    \"level\": \"25000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 25000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1690,\n            \"alias\": \"personal_liability_package\",\n            \"name\": \"Personal Liability Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2784,\n                    \"benefit_type\": {\n                        \"id\": 25,\n                        \"benefit_type_id\": 50,\n                        \"name\": \"Australian Personal Liability\",\n                        \"description\": \"Australian Personal Liability\",\n                        \"key\": \"personal_liability\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2773,\n                            \"value\": 2500000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9880,\n                    \"level\": \"2500000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2500000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1691,\n            \"alias\": \"baggage_package\",\n            \"name\": \"Baggage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2785,\n                    \"benefit_type\": {\n                        \"id\": 26,\n                        \"benefit_type_id\": 14,\n                        \"name\": \"Luggage and personal effects\",\n                        \"description\": \"Luggage and personal effects\",\n                        \"key\": \"baggage_and_personal_effects\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2774,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2786,\n                    \"benefit_type\": {\n                        \"id\": 27,\n                        \"benefit_type_id\": 15,\n                        \"name\": \"Delayed Baggage allowance\",\n                        \"description\": \"Delayed Baggage allowance\",\n                        \"key\": \"baggage_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2775,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9881,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9882,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9883,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9884,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9885,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9886,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9887,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9888,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1692,\n            \"alias\": \"rental_vehicle_damage_package\",\n            \"name\": \"Rental Vehicle Damage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2787,\n                    \"benefit_type\": {\n                        \"id\": 28,\n                        \"benefit_type_id\": 51,\n                        \"name\": \"Australian Vehicle\",\n                        \"description\": \"Australian Vehicle\",\n                        \"key\": \"vehicle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2776,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9889,\n                    \"level\": \"1\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 1\n                },\n                {\n                    \"id\": 9890,\n                    \"level\": \"2\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 2\n                },\n                {\n                    \"id\": 9891,\n                    \"level\": \"3\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 3\n                },\n                {\n                    \"id\": 9892,\n                    \"level\": \"4\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 4\n                },\n                {\n                    \"id\": 9893,\n                    \"level\": \"5\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 5\n                },\n                {\n                    \"id\": 9894,\n                    \"level\": \"6\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 6\n                },\n                {\n                    \"id\": 9895,\n                    \"level\": \"7\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 7\n                },\n                {\n                    \"id\": 9896,\n                    \"level\": \"8\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 8\n                },\n                {\n                    \"id\": 9897,\n                    \"level\": \"9\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 9\n                },\n                {\n                    \"id\": 9898,\n                    \"level\": \"10\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 10\n                },\n                {\n                    \"id\": 9899,\n                    \"level\": \"11\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 11\n                },\n                {\n                    \"id\": 9900,\n                    \"level\": \"12\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 12\n                },\n                {\n                    \"id\": 9901,\n                    \"level\": \"13\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 13\n                },\n                {\n                    \"id\": 9902,\n                    \"level\": \"14\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 14\n                },\n                {\n                    \"id\": 9903,\n                    \"level\": \"15\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 15\n                },\n                {\n                    \"id\": 9904,\n                    \"level\": \"16\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 16\n                },\n                {\n                    \"id\": 9905,\n                    \"level\": \"17\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 17\n                },\n                {\n                    \"id\": 9906,\n                    \"level\": \"18\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 18\n                },\n                {\n                    \"id\": 9907,\n                    \"level\": \"19\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 19\n                },\n                {\n                    \"id\": 9908,\n                    \"level\": \"20\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 20\n                },\n                {\n                    \"id\": 9909,\n                    \"level\": \"21\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 21\n                },\n                {\n                    \"id\": 9910,\n                    \"level\": \"22\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 22\n                },\n                {\n                    \"id\": 9911,\n                    \"level\": \"23\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 23\n                },\n                {\n                    \"id\": 9912,\n                    \"level\": \"24\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 24\n                },\n                {\n                    \"id\": 9913,\n                    \"level\": \"25\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 25\n                },\n                {\n                    \"id\": 9914,\n                    \"level\": \"26\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 26\n                },\n                {\n                    \"id\": 9915,\n                    \"level\": \"27\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 27\n                },\n                {\n                    \"id\": 9916,\n                    \"level\": \"28\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 28\n                },\n                {\n                    \"id\": 9917,\n                    \"level\": \"29\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 29\n                },\n                {\n                    \"id\": 9918,\n                    \"level\": \"30\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 30\n                },\n                {\n                    \"id\": 9919,\n                    \"level\": \"31\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 31\n                },\n                {\n                    \"id\": 9920,\n                    \"level\": \"32\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 32\n                },\n                {\n                    \"id\": 9921,\n                    \"level\": \"33\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 33\n                },\n                {\n                    \"id\": 9922,\n                    \"level\": \"34\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 34\n                },\n                {\n                    \"id\": 9923,\n                    \"level\": \"35\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 35\n                },\n                {\n                    \"id\": 9924,\n                    \"level\": \"36\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 36\n                },\n                {\n                    \"id\": 9925,\n                    \"level\": \"37\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 37\n                },\n                {\n                    \"id\": 9926,\n                    \"level\": \"38\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 38\n                },\n                {\n                    \"id\": 9927,\n                    \"level\": \"39\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 39\n                },\n                {\n                    \"id\": 9928,\n                    \"level\": \"40\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 40\n                },\n                {\n                    \"id\": 9929,\n                    \"level\": \"41\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 41\n                },\n                {\n                    \"id\": 9930,\n                    \"level\": \"42\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 42\n                },\n                {\n                    \"id\": 9931,\n                    \"level\": \"43\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 43\n                },\n                {\n                    \"id\": 9932,\n                    \"level\": \"44\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 44\n                },\n                {\n                    \"id\": 9933,\n                    \"level\": \"45\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 45\n                },\n                {\n                    \"id\": 9934,\n                    \"level\": \"46\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 46\n                },\n                {\n                    \"id\": 9935,\n                    \"level\": \"47\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 47\n                },\n                {\n                    \"id\": 9936,\n                    \"level\": \"48\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 48\n                },\n                {\n                    \"id\": 9937,\n                    \"level\": \"49\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 49\n                },\n                {\n                    \"id\": 9938,\n                    \"level\": \"50\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 50\n                },\n                {\n                    \"id\": 9939,\n                    \"level\": \"51\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 51\n                },\n                {\n                    \"id\": 9940,\n                    \"level\": \"52\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 52\n                },\n                {\n                    \"id\": 9941,\n                    \"level\": \"53\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 53\n                },\n                {\n                    \"id\": 9942,\n                    \"level\": \"54\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 54\n                },\n                {\n                    \"id\": 9943,\n                    \"level\": \"55\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 55\n                },\n                {\n                    \"id\": 9944,\n                    \"level\": \"56\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 56\n                },\n                {\n                    \"id\": 9945,\n                    \"level\": \"57\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 57\n                },\n                {\n                    \"id\": 9946,\n                    \"level\": \"58\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 58\n                },\n                {\n                    \"id\": 9947,\n                    \"level\": \"59\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 59\n                },\n                {\n                    \"id\": 9948,\n                    \"level\": \"60\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 60\n                },\n                {\n                    \"id\": 9949,\n                    \"level\": \"61\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 61\n                },\n                {\n                    \"id\": 9950,\n                    \"level\": \"62\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 62\n                },\n                {\n                    \"id\": 9951,\n                    \"level\": \"63\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 63\n                },\n                {\n                    \"id\": 9952,\n                    \"level\": \"64\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 64\n                },\n                {\n                    \"id\": 9953,\n                    \"level\": \"65\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 65\n                },\n                {\n                    \"id\": 9954,\n                    \"level\": \"66\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 66\n                },\n                {\n                    \"id\": 9955,\n                    \"level\": \"67\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 67\n                },\n                {\n                    \"id\": 9956,\n                    \"level\": \"68\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 68\n                },\n                {\n                    \"id\": 9957,\n                    \"level\": \"69\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 69\n                },\n                {\n                    \"id\": 9958,\n                    \"level\": \"70\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 70\n                },\n                {\n                    \"id\": 9959,\n                    \"level\": \"71\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 71\n                },\n                {\n                    \"id\": 9960,\n                    \"level\": \"72\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 72\n                },\n                {\n                    \"id\": 9961,\n                    \"level\": \"73\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 73\n                },\n                {\n                    \"id\": 9962,\n                    \"level\": \"74\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 74\n                },\n                {\n                    \"id\": 9963,\n                    \"level\": \"75\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 75\n                },\n                {\n                    \"id\": 9964,\n                    \"level\": \"76\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 76\n                },\n                {\n                    \"id\": 9965,\n                    \"level\": \"77\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 77\n                },\n                {\n                    \"id\": 9966,\n                    \"level\": \"78\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 78\n                },\n                {\n                    \"id\": 9967,\n                    \"level\": \"79\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 79\n                },\n                {\n                    \"id\": 9968,\n                    \"level\": \"80\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 80\n                },\n                {\n                    \"id\": 9969,\n                    \"level\": \"81\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 81\n                },\n                {\n                    \"id\": 9970,\n                    \"level\": \"82\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 82\n                },\n                {\n                    \"id\": 9971,\n                    \"level\": \"83\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 83\n                },\n                {\n                    \"id\": 9972,\n                    \"level\": \"84\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 84\n                },\n                {\n                    \"id\": 9973,\n                    \"level\": \"85\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 85\n                },\n                {\n                    \"id\": 9974,\n                    \"level\": \"86\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 86\n                },\n                {\n                    \"id\": 9975,\n                    \"level\": \"87\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 87\n                },\n                {\n                    \"id\": 9976,\n                    \"level\": \"88\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 88\n                },\n                {\n                    \"id\": 9977,\n                    \"level\": \"89\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 89\n                },\n                {\n                    \"id\": 9978,\n                    \"level\": \"90\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 90\n                },\n                {\n                    \"id\": 9979,\n                    \"level\": \"91\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 91\n                },\n                {\n                    \"id\": 9980,\n                    \"level\": \"92\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 92\n                },\n                {\n                    \"id\": 9981,\n                    \"level\": \"93\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 93\n                },\n                {\n                    \"id\": 9982,\n                    \"level\": \"94\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 94\n                },\n                {\n                    \"id\": 9983,\n                    \"level\": \"95\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 95\n                },\n                {\n                    \"id\": 9984,\n                    \"level\": \"96\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 96\n                },\n                {\n                    \"id\": 9985,\n                    \"level\": \"97\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 97\n                },\n                {\n                    \"id\": 9986,\n                    \"level\": \"98\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 98\n                },\n                {\n                    \"id\": 9987,\n                    \"level\": \"99\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 99\n                },\n                {\n                    \"id\": 9988,\n                    \"level\": \"100\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 100\n                },\n                {\n                    \"id\": 9989,\n                    \"level\": \"101\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 101\n                },\n                {\n                    \"id\": 9990,\n                    \"level\": \"102\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 102\n                },\n                {\n                    \"id\": 9991,\n                    \"level\": \"103\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 103\n                },\n                {\n                    \"id\": 9992,\n                    \"level\": \"104\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 104\n                },\n                {\n                    \"id\": 9993,\n                    \"level\": \"105\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 105\n                },\n                {\n                    \"id\": 9994,\n                    \"level\": \"106\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 106\n                },\n                {\n                    \"id\": 9995,\n                    \"level\": \"107\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 107\n                },\n                {\n                    \"id\": 9996,\n                    \"level\": \"108\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 108\n                },\n                {\n                    \"id\": 9997,\n                    \"level\": \"109\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 109\n                },\n                {\n                    \"id\": 9998,\n                    \"level\": \"110\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 110\n                },\n                {\n                    \"id\": 9999,\n                    \"level\": \"111\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 111\n                },\n                {\n                    \"id\": 10000,\n                    \"level\": \"112\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 112\n                },\n                {\n                    \"id\": 10001,\n                    \"level\": \"113\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 113\n                },\n                {\n                    \"id\": 10002,\n                    \"level\": \"114\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 114\n                },\n                {\n                    \"id\": 10003,\n                    \"level\": \"115\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 115\n                },\n                {\n                    \"id\": 10004,\n                    \"level\": \"116\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 116\n                },\n                {\n                    \"id\": 10005,\n                    \"level\": \"117\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 117\n                },\n                {\n                    \"id\": 10006,\n                    \"level\": \"118\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 118\n                },\n                {\n                    \"id\": 10007,\n                    \"level\": \"119\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 119\n                },\n                {\n                    \"id\": 10008,\n                    \"level\": \"120\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 120\n                },\n                {\n                    \"id\": 10009,\n                    \"level\": \"121\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 121\n                },\n                {\n                    \"id\": 10010,\n                    \"level\": \"122\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 122\n                },\n                {\n                    \"id\": 10011,\n                    \"level\": \"123\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 123\n                },\n                {\n                    \"id\": 10012,\n                    \"level\": \"124\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 124\n                },\n                {\n                    \"id\": 10013,\n                    \"level\": \"125\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 125\n                },\n                {\n                    \"id\": 10014,\n                    \"level\": \"126\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 126\n                },\n                {\n                    \"id\": 10015,\n                    \"level\": \"127\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 127\n                },\n                {\n                    \"id\": 10016,\n                    \"level\": \"128\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 128\n                },\n                {\n                    \"id\": 10017,\n                    \"level\": \"129\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 129\n                },\n                {\n                    \"id\": 10018,\n                    \"level\": \"130\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 130\n                },\n                {\n                    \"id\": 10019,\n                    \"level\": \"131\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 131\n                },\n                {\n                    \"id\": 10020,\n                    \"level\": \"132\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 132\n                },\n                {\n                    \"id\": 10021,\n                    \"level\": \"133\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 133\n                },\n                {\n                    \"id\": 10022,\n                    \"level\": \"134\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 134\n                },\n                {\n                    \"id\": 10023,\n                    \"level\": \"135\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 135\n                },\n                {\n                    \"id\": 10024,\n                    \"level\": \"136\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 136\n                },\n                {\n                    \"id\": 10025,\n                    \"level\": \"137\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 137\n                },\n                {\n                    \"id\": 10026,\n                    \"level\": \"138\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 138\n                },\n                {\n                    \"id\": 10027,\n                    \"level\": \"139\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 139\n                },\n                {\n                    \"id\": 10028,\n                    \"level\": \"140\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 140\n                },\n                {\n                    \"id\": 10029,\n                    \"level\": \"141\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 141\n                },\n                {\n                    \"id\": 10030,\n                    \"level\": \"142\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 142\n                },\n                {\n                    \"id\": 10031,\n                    \"level\": \"143\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 143\n                },\n                {\n                    \"id\": 10032,\n                    \"level\": \"144\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 144\n                },\n                {\n                    \"id\": 10033,\n                    \"level\": \"145\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 145\n                },\n                {\n                    \"id\": 10034,\n                    \"level\": \"146\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 146\n                },\n                {\n                    \"id\": 10035,\n                    \"level\": \"147\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 147\n                },\n                {\n                    \"id\": 10036,\n                    \"level\": \"148\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 148\n                },\n                {\n                    \"id\": 10037,\n                    \"level\": \"149\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 149\n                },\n                {\n                    \"id\": 10038,\n                    \"level\": \"150\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 150\n                },\n                {\n                    \"id\": 10039,\n                    \"level\": \"151\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 151\n                },\n                {\n                    \"id\": 10040,\n                    \"level\": \"152\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 152\n                },\n                {\n                    \"id\": 10041,\n                    \"level\": \"153\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 153\n                },\n                {\n                    \"id\": 10042,\n                    \"level\": \"154\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 154\n                },\n                {\n                    \"id\": 10043,\n                    \"level\": \"155\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 155\n                },\n                {\n                    \"id\": 10044,\n                    \"level\": \"156\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 156\n                },\n                {\n                    \"id\": 10045,\n                    \"level\": \"157\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 157\n                },\n                {\n                    \"id\": 10046,\n                    \"level\": \"158\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 158\n                },\n                {\n                    \"id\": 10047,\n                    \"level\": \"159\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 159\n                },\n                {\n                    \"id\": 10048,\n                    \"level\": \"160\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 160\n                },\n                {\n                    \"id\": 10049,\n                    \"level\": \"161\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 161\n                },\n                {\n                    \"id\": 10050,\n                    \"level\": \"162\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 162\n                },\n                {\n                    \"id\": 10051,\n                    \"level\": \"163\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 163\n                },\n                {\n                    \"id\": 10052,\n                    \"level\": \"164\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 164\n                },\n                {\n                    \"id\": 10053,\n                    \"level\": \"165\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 165\n                },\n                {\n                    \"id\": 10054,\n                    \"level\": \"166\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 166\n                },\n                {\n                    \"id\": 10055,\n                    \"level\": \"167\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 167\n                },\n                {\n                    \"id\": 10056,\n                    \"level\": \"168\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 168\n                },\n                {\n                    \"id\": 10057,\n                    \"level\": \"169\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 169\n                },\n                {\n                    \"id\": 10058,\n                    \"level\": \"170\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 170\n                },\n                {\n                    \"id\": 10059,\n                    \"level\": \"171\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 171\n                },\n                {\n                    \"id\": 10060,\n                    \"level\": \"172\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 172\n                },\n                {\n                    \"id\": 10061,\n                    \"level\": \"173\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 173\n                },\n                {\n                    \"id\": 10062,\n                    \"level\": \"174\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 174\n                },\n                {\n                    \"id\": 10063,\n                    \"level\": \"175\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 175\n                },\n                {\n                    \"id\": 10064,\n                    \"level\": \"176\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 176\n                },\n                {\n                    \"id\": 10065,\n                    \"level\": \"177\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 177\n                },\n                {\n                    \"id\": 10066,\n                    \"level\": \"178\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 178\n                },\n                {\n                    \"id\": 10067,\n                    \"level\": \"179\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 179\n                },\n                {\n                    \"id\": 10068,\n                    \"level\": \"180\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 180\n                },\n                {\n                    \"id\": 10069,\n                    \"level\": \"181\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 181\n                },\n                {\n                    \"id\": 10070,\n                    \"level\": \"182\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 182\n                },\n                {\n                    \"id\": 10071,\n                    \"level\": \"183\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 183\n                },\n                {\n                    \"id\": 10072,\n                    \"level\": \"184\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 184\n                },\n                {\n                    \"id\": 10073,\n                    \"level\": \"185\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 185\n                },\n                {\n                    \"id\": 10074,\n                    \"level\": \"186\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 186\n                },\n                {\n                    \"id\": 10075,\n                    \"level\": \"187\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 187\n                },\n                {\n                    \"id\": 10076,\n                    \"level\": \"188\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 188\n                },\n                {\n                    \"id\": 10077,\n                    \"level\": \"189\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 189\n                },\n                {\n                    \"id\": 10078,\n                    \"level\": \"190\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 190\n                },\n                {\n                    \"id\": 10079,\n                    \"level\": \"191\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 191\n                },\n                {\n                    \"id\": 10080,\n                    \"level\": \"192\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 192\n                },\n                {\n                    \"id\": 10081,\n                    \"level\": \"193\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 193\n                },\n                {\n                    \"id\": 10082,\n                    \"level\": \"194\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 194\n                },\n                {\n                    \"id\": 10083,\n                    \"level\": \"195\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 195\n                },\n                {\n                    \"id\": 10084,\n                    \"level\": \"196\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 196\n                },\n                {\n                    \"id\": 10085,\n                    \"level\": \"197\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 197\n                },\n                {\n                    \"id\": 10086,\n                    \"level\": \"198\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 198\n                },\n                {\n                    \"id\": 10087,\n                    \"level\": \"199\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 199\n                },\n                {\n                    \"id\": 10088,\n                    \"level\": \"200\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 200\n                },\n                {\n                    \"id\": 10089,\n                    \"level\": \"201\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 201\n                },\n                {\n                    \"id\": 10090,\n                    \"level\": \"202\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 202\n                },\n                {\n                    \"id\": 10091,\n                    \"level\": \"203\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 203\n                },\n                {\n                    \"id\": 10092,\n                    \"level\": \"204\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 204\n                },\n                {\n                    \"id\": 10093,\n                    \"level\": \"205\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 205\n                },\n                {\n                    \"id\": 10094,\n                    \"level\": \"206\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 206\n                },\n                {\n                    \"id\": 10095,\n                    \"level\": \"207\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 207\n                },\n                {\n                    \"id\": 10096,\n                    \"level\": \"208\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 208\n                },\n                {\n                    \"id\": 10097,\n                    \"level\": \"209\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 209\n                },\n                {\n                    \"id\": 10098,\n                    \"level\": \"210\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 210\n                },\n                {\n                    \"id\": 10099,\n                    \"level\": \"211\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 211\n                },\n                {\n                    \"id\": 10100,\n                    \"level\": \"212\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 212\n                },\n                {\n                    \"id\": 10101,\n                    \"level\": \"213\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 213\n                },\n                {\n                    \"id\": 10102,\n                    \"level\": \"214\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 214\n                },\n                {\n                    \"id\": 10103,\n                    \"level\": \"215\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 215\n                },\n                {\n                    \"id\": 10104,\n                    \"level\": \"216\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 216\n                },\n                {\n                    \"id\": 10105,\n                    \"level\": \"217\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 217\n                },\n                {\n                    \"id\": 10106,\n                    \"level\": \"218\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 218\n                },\n                {\n                    \"id\": 10107,\n                    \"level\": \"219\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 219\n                },\n                {\n                    \"id\": 10108,\n                    \"level\": \"220\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 220\n                },\n                {\n                    \"id\": 10109,\n                    \"level\": \"221\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 221\n                },\n                {\n                    \"id\": 10110,\n                    \"level\": \"222\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 222\n                },\n                {\n                    \"id\": 10111,\n                    \"level\": \"223\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 223\n                },\n                {\n                    \"id\": 10112,\n                    \"level\": \"224\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 224\n                },\n                {\n                    \"id\": 10113,\n                    \"level\": \"225\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 225\n                },\n                {\n                    \"id\": 10114,\n                    \"level\": \"226\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 226\n                },\n                {\n                    \"id\": 10115,\n                    \"level\": \"227\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 227\n                },\n                {\n                    \"id\": 10116,\n                    \"level\": \"228\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 228\n                },\n                {\n                    \"id\": 10117,\n                    \"level\": \"229\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 229\n                },\n                {\n                    \"id\": 10118,\n                    \"level\": \"230\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 230\n                },\n                {\n                    \"id\": 10119,\n                    \"level\": \"231\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 231\n                },\n                {\n                    \"id\": 10120,\n                    \"level\": \"232\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 232\n                },\n                {\n                    \"id\": 10121,\n                    \"level\": \"233\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 233\n                },\n                {\n                    \"id\": 10122,\n                    \"level\": \"234\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 234\n                },\n                {\n                    \"id\": 10123,\n                    \"level\": \"235\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 235\n                },\n                {\n                    \"id\": 10124,\n                    \"level\": \"236\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 236\n                },\n                {\n                    \"id\": 10125,\n                    \"level\": \"237\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 237\n                },\n                {\n                    \"id\": 10126,\n                    \"level\": \"238\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 238\n                },\n                {\n                    \"id\": 10127,\n                    \"level\": \"239\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 239\n                },\n                {\n                    \"id\": 10128,\n                    \"level\": \"240\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 240\n                },\n                {\n                    \"id\": 10129,\n                    \"level\": \"241\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 241\n                },\n                {\n                    \"id\": 10130,\n                    \"level\": \"242\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 242\n                },\n                {\n                    \"id\": 10131,\n                    \"level\": \"243\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 243\n                },\n                {\n                    \"id\": 10132,\n                    \"level\": \"244\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 244\n                },\n                {\n                    \"id\": 10133,\n                    \"level\": \"245\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 245\n                },\n                {\n                    \"id\": 10134,\n                    \"level\": \"246\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 246\n                },\n                {\n                    \"id\": 10135,\n                    \"level\": \"247\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 247\n                },\n                {\n                    \"id\": 10136,\n                    \"level\": \"248\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 248\n                },\n                {\n                    \"id\": 10137,\n                    \"level\": \"249\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 249\n                },\n                {\n                    \"id\": 10138,\n                    \"level\": \"250\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 250\n                },\n                {\n                    \"id\": 10139,\n                    \"level\": \"251\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 251\n                },\n                {\n                    \"id\": 10140,\n                    \"level\": \"252\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 252\n                },\n                {\n                    \"id\": 10141,\n                    \"level\": \"253\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 253\n                },\n                {\n                    \"id\": 10142,\n                    \"level\": \"254\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 254\n                },\n                {\n                    \"id\": 10143,\n                    \"level\": \"255\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 255\n                },\n                {\n                    \"id\": 10144,\n                    \"level\": \"256\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 256\n                },\n                {\n                    \"id\": 10145,\n                    \"level\": \"257\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 257\n                },\n                {\n                    \"id\": 10146,\n                    \"level\": \"258\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 258\n                },\n                {\n                    \"id\": 10147,\n                    \"level\": \"259\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 259\n                },\n                {\n                    \"id\": 10148,\n                    \"level\": \"260\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 260\n                },\n                {\n                    \"id\": 10149,\n                    \"level\": \"261\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 261\n                },\n                {\n                    \"id\": 10150,\n                    \"level\": \"262\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 262\n                },\n                {\n                    \"id\": 10151,\n                    \"level\": \"263\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 263\n                },\n                {\n                    \"id\": 10152,\n                    \"level\": \"264\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 264\n                },\n                {\n                    \"id\": 10153,\n                    \"level\": \"265\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 265\n                },\n                {\n                    \"id\": 10154,\n                    \"level\": \"266\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 266\n                },\n                {\n                    \"id\": 10155,\n                    \"level\": \"267\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 267\n                },\n                {\n                    \"id\": 10156,\n                    \"level\": \"268\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 268\n                },\n                {\n                    \"id\": 10157,\n                    \"level\": \"269\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 269\n                },\n                {\n                    \"id\": 10158,\n                    \"level\": \"270\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 270\n                },\n                {\n                    \"id\": 10159,\n                    \"level\": \"271\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 271\n                },\n                {\n                    \"id\": 10160,\n                    \"level\": \"272\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 272\n                },\n                {\n                    \"id\": 10161,\n                    \"level\": \"273\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 273\n                },\n                {\n                    \"id\": 10162,\n                    \"level\": \"274\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 274\n                },\n                {\n                    \"id\": 10163,\n                    \"level\": \"275\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 275\n                },\n                {\n                    \"id\": 10164,\n                    \"level\": \"276\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 276\n                },\n                {\n                    \"id\": 10165,\n                    \"level\": \"277\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 277\n                },\n                {\n                    \"id\": 10166,\n                    \"level\": \"278\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 278\n                },\n                {\n                    \"id\": 10167,\n                    \"level\": \"279\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 279\n                },\n                {\n                    \"id\": 10168,\n                    \"level\": \"280\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 280\n                },\n                {\n                    \"id\": 10169,\n                    \"level\": \"281\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 281\n                },\n                {\n                    \"id\": 10170,\n                    \"level\": \"282\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 282\n                },\n                {\n                    \"id\": 10171,\n                    \"level\": \"283\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 283\n                },\n                {\n                    \"id\": 10172,\n                    \"level\": \"284\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 284\n                },\n                {\n                    \"id\": 10173,\n                    \"level\": \"285\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 285\n                },\n                {\n                    \"id\": 10174,\n                    \"level\": \"286\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 286\n                },\n                {\n                    \"id\": 10175,\n                    \"level\": \"287\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 287\n                },\n                {\n                    \"id\": 10176,\n                    \"level\": \"288\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 288\n                },\n                {\n                    \"id\": 10177,\n                    \"level\": \"289\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 289\n                },\n                {\n                    \"id\": 10178,\n                    \"level\": \"290\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 290\n                },\n                {\n                    \"id\": 10179,\n                    \"level\": \"291\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 291\n                },\n                {\n                    \"id\": 10180,\n                    \"level\": \"292\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 292\n                },\n                {\n                    \"id\": 10181,\n                    \"level\": \"293\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 293\n                },\n                {\n                    \"id\": 10182,\n                    \"level\": \"294\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 294\n                },\n                {\n                    \"id\": 10183,\n                    \"level\": \"295\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 295\n                },\n                {\n                    \"id\": 10184,\n                    \"level\": \"296\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 296\n                },\n                {\n                    \"id\": 10185,\n                    \"level\": \"297\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 297\n                },\n                {\n                    \"id\": 10186,\n                    \"level\": \"298\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 298\n                },\n                {\n                    \"id\": 10187,\n                    \"level\": \"299\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 299\n                },\n                {\n                    \"id\": 10188,\n                    \"level\": \"300\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 300\n                },\n                {\n                    \"id\": 10189,\n                    \"level\": \"301\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 301\n                },\n                {\n                    \"id\": 10190,\n                    \"level\": \"302\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 302\n                },\n                {\n                    \"id\": 10191,\n                    \"level\": \"303\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 303\n                },\n                {\n                    \"id\": 10192,\n                    \"level\": \"304\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 304\n                },\n                {\n                    \"id\": 10193,\n                    \"level\": \"305\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 305\n                },\n                {\n                    \"id\": 10194,\n                    \"level\": \"306\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 306\n                },\n                {\n                    \"id\": 10195,\n                    \"level\": \"307\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 307\n                },\n                {\n                    \"id\": 10196,\n                    \"level\": \"308\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 308\n                },\n                {\n                    \"id\": 10197,\n                    \"level\": \"309\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 309\n                },\n                {\n                    \"id\": 10198,\n                    \"level\": \"310\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 310\n                },\n                {\n                    \"id\": 10199,\n                    \"level\": \"311\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 311\n                },\n                {\n                    \"id\": 10200,\n                    \"level\": \"312\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 312\n                },\n                {\n                    \"id\": 10201,\n                    \"level\": \"313\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 313\n                },\n                {\n                    \"id\": 10202,\n                    \"level\": \"314\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 314\n                },\n                {\n                    \"id\": 10203,\n                    \"level\": \"315\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 315\n                },\n                {\n                    \"id\": 10204,\n                    \"level\": \"316\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 316\n                },\n                {\n                    \"id\": 10205,\n                    \"level\": \"317\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 317\n                },\n                {\n                    \"id\": 10206,\n                    \"level\": \"318\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 318\n                },\n                {\n                    \"id\": 10207,\n                    \"level\": \"319\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 319\n                },\n                {\n                    \"id\": 10208,\n                    \"level\": \"320\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 320\n                },\n                {\n                    \"id\": 10209,\n                    \"level\": \"321\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 321\n                },\n                {\n                    \"id\": 10210,\n                    \"level\": \"322\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 322\n                },\n                {\n                    \"id\": 10211,\n                    \"level\": \"323\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 323\n                },\n                {\n                    \"id\": 10212,\n                    \"level\": \"324\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 324\n                },\n                {\n                    \"id\": 10213,\n                    \"level\": \"325\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 325\n                },\n                {\n                    \"id\": 10214,\n                    \"level\": \"326\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 326\n                },\n                {\n                    \"id\": 10215,\n                    \"level\": \"327\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 327\n                },\n                {\n                    \"id\": 10216,\n                    \"level\": \"328\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 328\n                },\n                {\n                    \"id\": 10217,\n                    \"level\": \"329\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 329\n                },\n                {\n                    \"id\": 10218,\n                    \"level\": \"330\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 330\n                },\n                {\n                    \"id\": 10219,\n                    \"level\": \"331\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 331\n                },\n                {\n                    \"id\": 10220,\n                    \"level\": \"332\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 332\n                },\n                {\n                    \"id\": 10221,\n                    \"level\": \"333\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 333\n                },\n                {\n                    \"id\": 10222,\n                    \"level\": \"334\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 334\n                },\n                {\n                    \"id\": 10223,\n                    \"level\": \"335\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 335\n                },\n                {\n                    \"id\": 10224,\n                    \"level\": \"336\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 336\n                },\n                {\n                    \"id\": 10225,\n                    \"level\": \"337\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 337\n                },\n                {\n                    \"id\": 10226,\n                    \"level\": \"338\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 338\n                },\n                {\n                    \"id\": 10227,\n                    \"level\": \"339\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 339\n                },\n                {\n                    \"id\": 10228,\n                    \"level\": \"340\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 340\n                },\n                {\n                    \"id\": 10229,\n                    \"level\": \"341\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 341\n                },\n                {\n                    \"id\": 10230,\n                    \"level\": \"342\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 342\n                },\n                {\n                    \"id\": 10231,\n                    \"level\": \"343\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 343\n                },\n                {\n                    \"id\": 10232,\n                    \"level\": \"344\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 344\n                },\n                {\n                    \"id\": 10233,\n                    \"level\": \"345\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 345\n                },\n                {\n                    \"id\": 10234,\n                    \"level\": \"346\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 346\n                },\n                {\n                    \"id\": 10235,\n                    \"level\": \"347\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 347\n                },\n                {\n                    \"id\": 10236,\n                    \"level\": \"348\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 348\n                },\n                {\n                    \"id\": 10237,\n                    \"level\": \"349\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 349\n                },\n                {\n                    \"id\": 10238,\n                    \"level\": \"350\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 350\n                },\n                {\n                    \"id\": 10239,\n                    \"level\": \"351\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 351\n                },\n                {\n                    \"id\": 10240,\n                    \"level\": \"352\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 352\n                },\n                {\n                    \"id\": 10241,\n                    \"level\": \"353\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 353\n                },\n                {\n                    \"id\": 10242,\n                    \"level\": \"354\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 354\n                },\n                {\n                    \"id\": 10243,\n                    \"level\": \"355\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 355\n                },\n                {\n                    \"id\": 10244,\n                    \"level\": \"356\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 356\n                },\n                {\n                    \"id\": 10245,\n                    \"level\": \"357\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 357\n                },\n                {\n                    \"id\": 10246,\n                    \"level\": \"358\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 358\n                },\n                {\n                    \"id\": 10247,\n                    \"level\": \"359\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 359\n                },\n                {\n                    \"id\": 10248,\n                    \"level\": \"360\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 360\n                },\n                {\n                    \"id\": 10249,\n                    \"level\": \"361\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 361\n                },\n                {\n                    \"id\": 10250,\n                    \"level\": \"362\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 362\n                },\n                {\n                    \"id\": 10251,\n                    \"level\": \"363\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 363\n                },\n                {\n                    \"id\": 10252,\n                    \"level\": \"364\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 364\n                },\n                {\n                    \"id\": 10253,\n                    \"level\": \"365\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 365\n                },\n                {\n                    \"id\": 10254,\n                    \"level\": \"366\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 366\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1693,\n            \"alias\": \"snow_package\",\n            \"name\": \"Snow Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2788,\n                    \"benefit_type\": {\n                        \"id\": 29,\n                        \"benefit_type_id\": 52,\n                        \"name\": \"Australian Snow\",\n                        \"description\": \"Australian Snow\",\n                        \"key\": \"snow\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2777,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10255,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1694,\n            \"alias\": \"motorcycle_moped_pack\",\n            \"name\": \"Motorcycle / Moped Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2789,\n                    \"benefit_type\": {\n                        \"id\": 30,\n                        \"benefit_type_id\": 53,\n                        \"name\": \"Australian Motorcycle\",\n                        \"description\": \"Australian Motorcycle\",\n                        \"key\": \"motorcycle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2778,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10256,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1695,\n            \"alias\": \"cruise_pack\",\n            \"name\": \"Cruise Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2790,\n                    \"benefit_type\": {\n                        \"id\": 31,\n                        \"benefit_type_id\": 54,\n                        \"name\": \"Australian Cruise\",\n                        \"description\": \"Australian Cruise\",\n                        \"key\": \"cruise\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2779,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10257,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1696,\n            \"alias\": \"pet_cover\",\n            \"name\": \"Pet Cover\",\n            \"coverages\": [\n                {\n                    \"id\": 2791,\n                    \"benefit_type\": {\n                        \"id\": 32,\n                        \"benefit_type_id\": 19,\n                        \"name\": \"Australian Pet Cover\",\n                        \"description\": \"Australian Pet Cover\",\n                        \"key\": \"pet_cover_kennel_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2780,\n                            \"value\": 500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10258,\n                    \"level\": \"300\",\n                    \"type\": \"$ per day\",\n                    \"type_id\": 3,\n                    \"is_default\": true,\n                    \"value\": 300\n                }\n            ],\n            \"attributes\": []\n        }\n    ]\n}"}],"_postman_id":"eefda881-cb68-4814-b0fc-ffd26504b205"},{"name":"Product Packages By Country","id":"84a54eb8-4ab4-4483-8035-c8d7454cf94b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/country/{{country_code}}/packages","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"fb66d410-368c-4c13-9c73-1bada062edbc","id":"fb66d410-368c-4c13-9c73-1bada062edbc","name":"Related Data","type":"folder"}},"urlObject":{"path":["api","partner","product","{{api_product_id}}","country","{{country_code}}","packages"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"eecfb308-2a07-4cce-94f5-e82de36349ec","name":"USA Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/country/{{country_code}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 01 Dec 2022 13:53:42 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"54"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 76,\n            \"alias\": \"base_package\",\n            \"name\": \"Base Package\",\n            \"coverages\": [\n                {\n                    \"id\": 530,\n                    \"benefit_type\": {\n                        \"id\": 49,\n                        \"benefit_type_id\": 46,\n                        \"name\": \"Tournament Cancellation\",\n                        \"description\": \"Tournament Cancellation\",\n                        \"key\": \"event_cancellation\"\n                    },\n                    \"limits\": [],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [],\n            \"attributes\": []\n        }\n    ]\n}"},{"id":"3094fc05-6c81-4dbb-bb42-e1b9424f3f3a","name":"Australian Generic","originalRequest":{"method":"GET","header":[],"url":"{{host_gateway}}/api/partner/product/{{api_product_id}}/country/{{country_code}}/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 12 Dec 2022 09:33:44 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"54"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1686,\n            \"alias\": \"travel_medical_package\",\n            \"name\": \"Travel Medical Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2774,\n                    \"benefit_type\": {\n                        \"id\": 15,\n                        \"benefit_type_id\": 22,\n                        \"name\": \"Emergency Medical and additional expenses\",\n                        \"description\": \"Emergency Medical and additional expenses\",\n                        \"key\": \"travel_medical\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2763,\n                            \"value\": 2000000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2775,\n                    \"benefit_type\": {\n                        \"id\": 16,\n                        \"benefit_type_id\": 47,\n                        \"name\": \"Funeral Expenses abroad\",\n                        \"description\": \"Funeral Expenses abroad\",\n                        \"key\": \"funeral_expense_abroad\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2764,\n                            \"value\": 20000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2776,\n                    \"benefit_type\": {\n                        \"id\": 17,\n                        \"benefit_type_id\": 45,\n                        \"name\": \"Hospital benefit and confinement\",\n                        \"description\": \"Hospital benefit and confinement\",\n                        \"key\": \"hospital_room_and_board\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2765,\n                            \"value\": 1000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [\n                {\n                    \"id\": 3271,\n                    \"product_package_validation_type\": {\n                        \"id\": 1,\n                        \"name\": \"Is Required\",\n                        \"description\": \"The package is required.\"\n                    },\n                    \"value\": \"1\"\n                }\n            ],\n            \"levels\": [\n                {\n                    \"id\": 9865,\n                    \"level\": \"Unlimited\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": null\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1687,\n            \"alias\": \"trip_interruption_package\",\n            \"name\": \"Trip Interruption Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2777,\n                    \"benefit_type\": {\n                        \"id\": 18,\n                        \"benefit_type_id\": 3,\n                        \"name\": \"Australian Trip Interruption\",\n                        \"description\": \"Australian Trip Interruption\",\n                        \"key\": \"trip_interruption\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2766,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2778,\n                    \"benefit_type\": {\n                        \"id\": 19,\n                        \"benefit_type_id\": 1,\n                        \"name\": \"Australian Trip Cancellation\",\n                        \"description\": \"Australian Trip Cancellation\",\n                        \"key\": \"trip_cancellation\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2767,\n                            \"value\": 40000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2779,\n                    \"benefit_type\": {\n                        \"id\": 20,\n                        \"benefit_type_id\": 48,\n                        \"name\": \"Airfare Reimbursement\",\n                        \"description\": \"Airfare Reimbursement\",\n                        \"key\": \"airfare_reimbursement\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2768,\n                            \"value\": 2500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2780,\n                    \"benefit_type\": {\n                        \"id\": 21,\n                        \"benefit_type_id\": 28,\n                        \"name\": \"Travel resumption\",\n                        \"description\": \"Travel resumption\",\n                        \"key\": \"resumption_of_trip\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2769,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2781,\n                    \"benefit_type\": {\n                        \"id\": 22,\n                        \"benefit_type_id\": 49,\n                        \"name\": \"Hijacking\",\n                        \"description\": \"Hijacking\",\n                        \"key\": \"hijacking\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2770,\n                            \"value\": 5000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9866,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9867,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9868,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9869,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9870,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9871,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9872,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9873,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                },\n                {\n                    \"id\": 9874,\n                    \"level\": \"15000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 15000\n                },\n                {\n                    \"id\": 9875,\n                    \"level\": \"20000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 20000\n                },\n                {\n                    \"id\": 9876,\n                    \"level\": \"30000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 30000\n                },\n                {\n                    \"id\": 9877,\n                    \"level\": \"40000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 40000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1688,\n            \"alias\": \"travel_delay_package\",\n            \"name\": \"Travel Delay Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2782,\n                    \"benefit_type\": {\n                        \"id\": 23,\n                        \"benefit_type_id\": 6,\n                        \"name\": \"Australian Trip Delay\",\n                        \"description\": \"Australian Trip Delay\",\n                        \"key\": \"trip_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2771,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9878,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1689,\n            \"alias\": \"personal_accident_package\",\n            \"name\": \"Personal Accident Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2783,\n                    \"benefit_type\": {\n                        \"id\": 24,\n                        \"benefit_type_id\": 25,\n                        \"name\": \"Australian ADD\",\n                        \"description\": \"Australian ADD\",\n                        \"key\": \"non_flight_accidental_death_and_dismemberment\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2772,\n                            \"value\": 25000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9879,\n                    \"level\": \"25000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 25000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1690,\n            \"alias\": \"personal_liability_package\",\n            \"name\": \"Personal Liability Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2784,\n                    \"benefit_type\": {\n                        \"id\": 25,\n                        \"benefit_type_id\": 50,\n                        \"name\": \"Australian Personal Liability\",\n                        \"description\": \"Australian Personal Liability\",\n                        \"key\": \"personal_liability\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2773,\n                            \"value\": 2500000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9880,\n                    \"level\": \"2500000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 2500000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1691,\n            \"alias\": \"baggage_package\",\n            \"name\": \"Baggage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2785,\n                    \"benefit_type\": {\n                        \"id\": 26,\n                        \"benefit_type_id\": 14,\n                        \"name\": \"Luggage and personal effects\",\n                        \"description\": \"Luggage and personal effects\",\n                        \"key\": \"baggage_and_personal_effects\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2774,\n                            \"value\": 2000,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": true,\n                    \"deductible\": 0\n                },\n                {\n                    \"id\": 2786,\n                    \"benefit_type\": {\n                        \"id\": 27,\n                        \"benefit_type_id\": 15,\n                        \"name\": \"Delayed Baggage allowance\",\n                        \"description\": \"Delayed Baggage allowance\",\n                        \"key\": \"baggage_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2775,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9881,\n                    \"level\": \"1000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": true,\n                    \"value\": 1000\n                },\n                {\n                    \"id\": 9882,\n                    \"level\": \"2000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 2000\n                },\n                {\n                    \"id\": 9883,\n                    \"level\": \"3000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 3000\n                },\n                {\n                    \"id\": 9884,\n                    \"level\": \"4000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 4000\n                },\n                {\n                    \"id\": 9885,\n                    \"level\": \"5000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 5000\n                },\n                {\n                    \"id\": 9886,\n                    \"level\": \"6000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 6000\n                },\n                {\n                    \"id\": 9887,\n                    \"level\": \"8000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 8000\n                },\n                {\n                    \"id\": 9888,\n                    \"level\": \"10000\",\n                    \"type\": \"$\",\n                    \"type_id\": 1,\n                    \"is_default\": false,\n                    \"value\": 10000\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1692,\n            \"alias\": \"rental_vehicle_damage_package\",\n            \"name\": \"Rental Vehicle Damage Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2787,\n                    \"benefit_type\": {\n                        \"id\": 28,\n                        \"benefit_type_id\": 51,\n                        \"name\": \"Australian Vehicle\",\n                        \"description\": \"Australian Vehicle\",\n                        \"key\": \"vehicle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2776,\n                            \"value\": 300,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"flat rate\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 9889,\n                    \"level\": \"1\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 1\n                },\n                {\n                    \"id\": 9890,\n                    \"level\": \"2\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 2\n                },\n                {\n                    \"id\": 9891,\n                    \"level\": \"3\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 3\n                },\n                {\n                    \"id\": 9892,\n                    \"level\": \"4\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 4\n                },\n                {\n                    \"id\": 9893,\n                    \"level\": \"5\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 5\n                },\n                {\n                    \"id\": 9894,\n                    \"level\": \"6\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 6\n                },\n                {\n                    \"id\": 9895,\n                    \"level\": \"7\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 7\n                },\n                {\n                    \"id\": 9896,\n                    \"level\": \"8\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 8\n                },\n                {\n                    \"id\": 9897,\n                    \"level\": \"9\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 9\n                },\n                {\n                    \"id\": 9898,\n                    \"level\": \"10\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 10\n                },\n                {\n                    \"id\": 9899,\n                    \"level\": \"11\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 11\n                },\n                {\n                    \"id\": 9900,\n                    \"level\": \"12\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 12\n                },\n                {\n                    \"id\": 9901,\n                    \"level\": \"13\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 13\n                },\n                {\n                    \"id\": 9902,\n                    \"level\": \"14\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 14\n                },\n                {\n                    \"id\": 9903,\n                    \"level\": \"15\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 15\n                },\n                {\n                    \"id\": 9904,\n                    \"level\": \"16\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 16\n                },\n                {\n                    \"id\": 9905,\n                    \"level\": \"17\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 17\n                },\n                {\n                    \"id\": 9906,\n                    \"level\": \"18\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 18\n                },\n                {\n                    \"id\": 9907,\n                    \"level\": \"19\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 19\n                },\n                {\n                    \"id\": 9908,\n                    \"level\": \"20\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 20\n                },\n                {\n                    \"id\": 9909,\n                    \"level\": \"21\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 21\n                },\n                {\n                    \"id\": 9910,\n                    \"level\": \"22\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 22\n                },\n                {\n                    \"id\": 9911,\n                    \"level\": \"23\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 23\n                },\n                {\n                    \"id\": 9912,\n                    \"level\": \"24\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 24\n                },\n                {\n                    \"id\": 9913,\n                    \"level\": \"25\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 25\n                },\n                {\n                    \"id\": 9914,\n                    \"level\": \"26\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 26\n                },\n                {\n                    \"id\": 9915,\n                    \"level\": \"27\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 27\n                },\n                {\n                    \"id\": 9916,\n                    \"level\": \"28\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 28\n                },\n                {\n                    \"id\": 9917,\n                    \"level\": \"29\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 29\n                },\n                {\n                    \"id\": 9918,\n                    \"level\": \"30\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 30\n                },\n                {\n                    \"id\": 9919,\n                    \"level\": \"31\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 31\n                },\n                {\n                    \"id\": 9920,\n                    \"level\": \"32\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 32\n                },\n                {\n                    \"id\": 9921,\n                    \"level\": \"33\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 33\n                },\n                {\n                    \"id\": 9922,\n                    \"level\": \"34\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 34\n                },\n                {\n                    \"id\": 9923,\n                    \"level\": \"35\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 35\n                },\n                {\n                    \"id\": 9924,\n                    \"level\": \"36\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 36\n                },\n                {\n                    \"id\": 9925,\n                    \"level\": \"37\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 37\n                },\n                {\n                    \"id\": 9926,\n                    \"level\": \"38\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 38\n                },\n                {\n                    \"id\": 9927,\n                    \"level\": \"39\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 39\n                },\n                {\n                    \"id\": 9928,\n                    \"level\": \"40\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 40\n                },\n                {\n                    \"id\": 9929,\n                    \"level\": \"41\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 41\n                },\n                {\n                    \"id\": 9930,\n                    \"level\": \"42\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 42\n                },\n                {\n                    \"id\": 9931,\n                    \"level\": \"43\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 43\n                },\n                {\n                    \"id\": 9932,\n                    \"level\": \"44\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 44\n                },\n                {\n                    \"id\": 9933,\n                    \"level\": \"45\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 45\n                },\n                {\n                    \"id\": 9934,\n                    \"level\": \"46\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 46\n                },\n                {\n                    \"id\": 9935,\n                    \"level\": \"47\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 47\n                },\n                {\n                    \"id\": 9936,\n                    \"level\": \"48\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 48\n                },\n                {\n                    \"id\": 9937,\n                    \"level\": \"49\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 49\n                },\n                {\n                    \"id\": 9938,\n                    \"level\": \"50\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 50\n                },\n                {\n                    \"id\": 9939,\n                    \"level\": \"51\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 51\n                },\n                {\n                    \"id\": 9940,\n                    \"level\": \"52\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 52\n                },\n                {\n                    \"id\": 9941,\n                    \"level\": \"53\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 53\n                },\n                {\n                    \"id\": 9942,\n                    \"level\": \"54\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 54\n                },\n                {\n                    \"id\": 9943,\n                    \"level\": \"55\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 55\n                },\n                {\n                    \"id\": 9944,\n                    \"level\": \"56\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 56\n                },\n                {\n                    \"id\": 9945,\n                    \"level\": \"57\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 57\n                },\n                {\n                    \"id\": 9946,\n                    \"level\": \"58\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 58\n                },\n                {\n                    \"id\": 9947,\n                    \"level\": \"59\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 59\n                },\n                {\n                    \"id\": 9948,\n                    \"level\": \"60\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 60\n                },\n                {\n                    \"id\": 9949,\n                    \"level\": \"61\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 61\n                },\n                {\n                    \"id\": 9950,\n                    \"level\": \"62\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 62\n                },\n                {\n                    \"id\": 9951,\n                    \"level\": \"63\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 63\n                },\n                {\n                    \"id\": 9952,\n                    \"level\": \"64\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 64\n                },\n                {\n                    \"id\": 9953,\n                    \"level\": \"65\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 65\n                },\n                {\n                    \"id\": 9954,\n                    \"level\": \"66\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 66\n                },\n                {\n                    \"id\": 9955,\n                    \"level\": \"67\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 67\n                },\n                {\n                    \"id\": 9956,\n                    \"level\": \"68\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 68\n                },\n                {\n                    \"id\": 9957,\n                    \"level\": \"69\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 69\n                },\n                {\n                    \"id\": 9958,\n                    \"level\": \"70\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 70\n                },\n                {\n                    \"id\": 9959,\n                    \"level\": \"71\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 71\n                },\n                {\n                    \"id\": 9960,\n                    \"level\": \"72\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 72\n                },\n                {\n                    \"id\": 9961,\n                    \"level\": \"73\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 73\n                },\n                {\n                    \"id\": 9962,\n                    \"level\": \"74\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 74\n                },\n                {\n                    \"id\": 9963,\n                    \"level\": \"75\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 75\n                },\n                {\n                    \"id\": 9964,\n                    \"level\": \"76\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 76\n                },\n                {\n                    \"id\": 9965,\n                    \"level\": \"77\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 77\n                },\n                {\n                    \"id\": 9966,\n                    \"level\": \"78\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 78\n                },\n                {\n                    \"id\": 9967,\n                    \"level\": \"79\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 79\n                },\n                {\n                    \"id\": 9968,\n                    \"level\": \"80\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 80\n                },\n                {\n                    \"id\": 9969,\n                    \"level\": \"81\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 81\n                },\n                {\n                    \"id\": 9970,\n                    \"level\": \"82\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 82\n                },\n                {\n                    \"id\": 9971,\n                    \"level\": \"83\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 83\n                },\n                {\n                    \"id\": 9972,\n                    \"level\": \"84\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 84\n                },\n                {\n                    \"id\": 9973,\n                    \"level\": \"85\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 85\n                },\n                {\n                    \"id\": 9974,\n                    \"level\": \"86\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 86\n                },\n                {\n                    \"id\": 9975,\n                    \"level\": \"87\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 87\n                },\n                {\n                    \"id\": 9976,\n                    \"level\": \"88\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 88\n                },\n                {\n                    \"id\": 9977,\n                    \"level\": \"89\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 89\n                },\n                {\n                    \"id\": 9978,\n                    \"level\": \"90\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 90\n                },\n                {\n                    \"id\": 9979,\n                    \"level\": \"91\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 91\n                },\n                {\n                    \"id\": 9980,\n                    \"level\": \"92\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 92\n                },\n                {\n                    \"id\": 9981,\n                    \"level\": \"93\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 93\n                },\n                {\n                    \"id\": 9982,\n                    \"level\": \"94\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 94\n                },\n                {\n                    \"id\": 9983,\n                    \"level\": \"95\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 95\n                },\n                {\n                    \"id\": 9984,\n                    \"level\": \"96\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 96\n                },\n                {\n                    \"id\": 9985,\n                    \"level\": \"97\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 97\n                },\n                {\n                    \"id\": 9986,\n                    \"level\": \"98\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 98\n                },\n                {\n                    \"id\": 9987,\n                    \"level\": \"99\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 99\n                },\n                {\n                    \"id\": 9988,\n                    \"level\": \"100\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 100\n                },\n                {\n                    \"id\": 9989,\n                    \"level\": \"101\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 101\n                },\n                {\n                    \"id\": 9990,\n                    \"level\": \"102\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 102\n                },\n                {\n                    \"id\": 9991,\n                    \"level\": \"103\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 103\n                },\n                {\n                    \"id\": 9992,\n                    \"level\": \"104\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 104\n                },\n                {\n                    \"id\": 9993,\n                    \"level\": \"105\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 105\n                },\n                {\n                    \"id\": 9994,\n                    \"level\": \"106\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 106\n                },\n                {\n                    \"id\": 9995,\n                    \"level\": \"107\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 107\n                },\n                {\n                    \"id\": 9996,\n                    \"level\": \"108\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 108\n                },\n                {\n                    \"id\": 9997,\n                    \"level\": \"109\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 109\n                },\n                {\n                    \"id\": 9998,\n                    \"level\": \"110\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 110\n                },\n                {\n                    \"id\": 9999,\n                    \"level\": \"111\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 111\n                },\n                {\n                    \"id\": 10000,\n                    \"level\": \"112\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 112\n                },\n                {\n                    \"id\": 10001,\n                    \"level\": \"113\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 113\n                },\n                {\n                    \"id\": 10002,\n                    \"level\": \"114\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 114\n                },\n                {\n                    \"id\": 10003,\n                    \"level\": \"115\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 115\n                },\n                {\n                    \"id\": 10004,\n                    \"level\": \"116\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 116\n                },\n                {\n                    \"id\": 10005,\n                    \"level\": \"117\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 117\n                },\n                {\n                    \"id\": 10006,\n                    \"level\": \"118\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 118\n                },\n                {\n                    \"id\": 10007,\n                    \"level\": \"119\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 119\n                },\n                {\n                    \"id\": 10008,\n                    \"level\": \"120\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 120\n                },\n                {\n                    \"id\": 10009,\n                    \"level\": \"121\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 121\n                },\n                {\n                    \"id\": 10010,\n                    \"level\": \"122\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 122\n                },\n                {\n                    \"id\": 10011,\n                    \"level\": \"123\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 123\n                },\n                {\n                    \"id\": 10012,\n                    \"level\": \"124\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 124\n                },\n                {\n                    \"id\": 10013,\n                    \"level\": \"125\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 125\n                },\n                {\n                    \"id\": 10014,\n                    \"level\": \"126\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 126\n                },\n                {\n                    \"id\": 10015,\n                    \"level\": \"127\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 127\n                },\n                {\n                    \"id\": 10016,\n                    \"level\": \"128\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 128\n                },\n                {\n                    \"id\": 10017,\n                    \"level\": \"129\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 129\n                },\n                {\n                    \"id\": 10018,\n                    \"level\": \"130\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 130\n                },\n                {\n                    \"id\": 10019,\n                    \"level\": \"131\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 131\n                },\n                {\n                    \"id\": 10020,\n                    \"level\": \"132\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 132\n                },\n                {\n                    \"id\": 10021,\n                    \"level\": \"133\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 133\n                },\n                {\n                    \"id\": 10022,\n                    \"level\": \"134\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 134\n                },\n                {\n                    \"id\": 10023,\n                    \"level\": \"135\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 135\n                },\n                {\n                    \"id\": 10024,\n                    \"level\": \"136\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 136\n                },\n                {\n                    \"id\": 10025,\n                    \"level\": \"137\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 137\n                },\n                {\n                    \"id\": 10026,\n                    \"level\": \"138\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 138\n                },\n                {\n                    \"id\": 10027,\n                    \"level\": \"139\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 139\n                },\n                {\n                    \"id\": 10028,\n                    \"level\": \"140\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 140\n                },\n                {\n                    \"id\": 10029,\n                    \"level\": \"141\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 141\n                },\n                {\n                    \"id\": 10030,\n                    \"level\": \"142\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 142\n                },\n                {\n                    \"id\": 10031,\n                    \"level\": \"143\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 143\n                },\n                {\n                    \"id\": 10032,\n                    \"level\": \"144\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 144\n                },\n                {\n                    \"id\": 10033,\n                    \"level\": \"145\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 145\n                },\n                {\n                    \"id\": 10034,\n                    \"level\": \"146\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 146\n                },\n                {\n                    \"id\": 10035,\n                    \"level\": \"147\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 147\n                },\n                {\n                    \"id\": 10036,\n                    \"level\": \"148\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 148\n                },\n                {\n                    \"id\": 10037,\n                    \"level\": \"149\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 149\n                },\n                {\n                    \"id\": 10038,\n                    \"level\": \"150\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 150\n                },\n                {\n                    \"id\": 10039,\n                    \"level\": \"151\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 151\n                },\n                {\n                    \"id\": 10040,\n                    \"level\": \"152\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 152\n                },\n                {\n                    \"id\": 10041,\n                    \"level\": \"153\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 153\n                },\n                {\n                    \"id\": 10042,\n                    \"level\": \"154\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 154\n                },\n                {\n                    \"id\": 10043,\n                    \"level\": \"155\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 155\n                },\n                {\n                    \"id\": 10044,\n                    \"level\": \"156\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 156\n                },\n                {\n                    \"id\": 10045,\n                    \"level\": \"157\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 157\n                },\n                {\n                    \"id\": 10046,\n                    \"level\": \"158\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 158\n                },\n                {\n                    \"id\": 10047,\n                    \"level\": \"159\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 159\n                },\n                {\n                    \"id\": 10048,\n                    \"level\": \"160\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 160\n                },\n                {\n                    \"id\": 10049,\n                    \"level\": \"161\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 161\n                },\n                {\n                    \"id\": 10050,\n                    \"level\": \"162\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 162\n                },\n                {\n                    \"id\": 10051,\n                    \"level\": \"163\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 163\n                },\n                {\n                    \"id\": 10052,\n                    \"level\": \"164\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 164\n                },\n                {\n                    \"id\": 10053,\n                    \"level\": \"165\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 165\n                },\n                {\n                    \"id\": 10054,\n                    \"level\": \"166\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 166\n                },\n                {\n                    \"id\": 10055,\n                    \"level\": \"167\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 167\n                },\n                {\n                    \"id\": 10056,\n                    \"level\": \"168\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 168\n                },\n                {\n                    \"id\": 10057,\n                    \"level\": \"169\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 169\n                },\n                {\n                    \"id\": 10058,\n                    \"level\": \"170\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 170\n                },\n                {\n                    \"id\": 10059,\n                    \"level\": \"171\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 171\n                },\n                {\n                    \"id\": 10060,\n                    \"level\": \"172\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 172\n                },\n                {\n                    \"id\": 10061,\n                    \"level\": \"173\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 173\n                },\n                {\n                    \"id\": 10062,\n                    \"level\": \"174\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 174\n                },\n                {\n                    \"id\": 10063,\n                    \"level\": \"175\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 175\n                },\n                {\n                    \"id\": 10064,\n                    \"level\": \"176\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 176\n                },\n                {\n                    \"id\": 10065,\n                    \"level\": \"177\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 177\n                },\n                {\n                    \"id\": 10066,\n                    \"level\": \"178\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 178\n                },\n                {\n                    \"id\": 10067,\n                    \"level\": \"179\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 179\n                },\n                {\n                    \"id\": 10068,\n                    \"level\": \"180\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 180\n                },\n                {\n                    \"id\": 10069,\n                    \"level\": \"181\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 181\n                },\n                {\n                    \"id\": 10070,\n                    \"level\": \"182\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 182\n                },\n                {\n                    \"id\": 10071,\n                    \"level\": \"183\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 183\n                },\n                {\n                    \"id\": 10072,\n                    \"level\": \"184\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 184\n                },\n                {\n                    \"id\": 10073,\n                    \"level\": \"185\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 185\n                },\n                {\n                    \"id\": 10074,\n                    \"level\": \"186\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 186\n                },\n                {\n                    \"id\": 10075,\n                    \"level\": \"187\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 187\n                },\n                {\n                    \"id\": 10076,\n                    \"level\": \"188\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 188\n                },\n                {\n                    \"id\": 10077,\n                    \"level\": \"189\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 189\n                },\n                {\n                    \"id\": 10078,\n                    \"level\": \"190\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 190\n                },\n                {\n                    \"id\": 10079,\n                    \"level\": \"191\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 191\n                },\n                {\n                    \"id\": 10080,\n                    \"level\": \"192\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 192\n                },\n                {\n                    \"id\": 10081,\n                    \"level\": \"193\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 193\n                },\n                {\n                    \"id\": 10082,\n                    \"level\": \"194\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 194\n                },\n                {\n                    \"id\": 10083,\n                    \"level\": \"195\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 195\n                },\n                {\n                    \"id\": 10084,\n                    \"level\": \"196\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 196\n                },\n                {\n                    \"id\": 10085,\n                    \"level\": \"197\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 197\n                },\n                {\n                    \"id\": 10086,\n                    \"level\": \"198\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 198\n                },\n                {\n                    \"id\": 10087,\n                    \"level\": \"199\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 199\n                },\n                {\n                    \"id\": 10088,\n                    \"level\": \"200\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 200\n                },\n                {\n                    \"id\": 10089,\n                    \"level\": \"201\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 201\n                },\n                {\n                    \"id\": 10090,\n                    \"level\": \"202\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 202\n                },\n                {\n                    \"id\": 10091,\n                    \"level\": \"203\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 203\n                },\n                {\n                    \"id\": 10092,\n                    \"level\": \"204\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 204\n                },\n                {\n                    \"id\": 10093,\n                    \"level\": \"205\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 205\n                },\n                {\n                    \"id\": 10094,\n                    \"level\": \"206\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 206\n                },\n                {\n                    \"id\": 10095,\n                    \"level\": \"207\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 207\n                },\n                {\n                    \"id\": 10096,\n                    \"level\": \"208\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 208\n                },\n                {\n                    \"id\": 10097,\n                    \"level\": \"209\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 209\n                },\n                {\n                    \"id\": 10098,\n                    \"level\": \"210\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 210\n                },\n                {\n                    \"id\": 10099,\n                    \"level\": \"211\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 211\n                },\n                {\n                    \"id\": 10100,\n                    \"level\": \"212\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 212\n                },\n                {\n                    \"id\": 10101,\n                    \"level\": \"213\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 213\n                },\n                {\n                    \"id\": 10102,\n                    \"level\": \"214\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 214\n                },\n                {\n                    \"id\": 10103,\n                    \"level\": \"215\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 215\n                },\n                {\n                    \"id\": 10104,\n                    \"level\": \"216\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 216\n                },\n                {\n                    \"id\": 10105,\n                    \"level\": \"217\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 217\n                },\n                {\n                    \"id\": 10106,\n                    \"level\": \"218\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 218\n                },\n                {\n                    \"id\": 10107,\n                    \"level\": \"219\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 219\n                },\n                {\n                    \"id\": 10108,\n                    \"level\": \"220\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 220\n                },\n                {\n                    \"id\": 10109,\n                    \"level\": \"221\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 221\n                },\n                {\n                    \"id\": 10110,\n                    \"level\": \"222\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 222\n                },\n                {\n                    \"id\": 10111,\n                    \"level\": \"223\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 223\n                },\n                {\n                    \"id\": 10112,\n                    \"level\": \"224\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 224\n                },\n                {\n                    \"id\": 10113,\n                    \"level\": \"225\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 225\n                },\n                {\n                    \"id\": 10114,\n                    \"level\": \"226\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 226\n                },\n                {\n                    \"id\": 10115,\n                    \"level\": \"227\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 227\n                },\n                {\n                    \"id\": 10116,\n                    \"level\": \"228\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 228\n                },\n                {\n                    \"id\": 10117,\n                    \"level\": \"229\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 229\n                },\n                {\n                    \"id\": 10118,\n                    \"level\": \"230\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 230\n                },\n                {\n                    \"id\": 10119,\n                    \"level\": \"231\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 231\n                },\n                {\n                    \"id\": 10120,\n                    \"level\": \"232\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 232\n                },\n                {\n                    \"id\": 10121,\n                    \"level\": \"233\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 233\n                },\n                {\n                    \"id\": 10122,\n                    \"level\": \"234\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 234\n                },\n                {\n                    \"id\": 10123,\n                    \"level\": \"235\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 235\n                },\n                {\n                    \"id\": 10124,\n                    \"level\": \"236\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 236\n                },\n                {\n                    \"id\": 10125,\n                    \"level\": \"237\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 237\n                },\n                {\n                    \"id\": 10126,\n                    \"level\": \"238\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 238\n                },\n                {\n                    \"id\": 10127,\n                    \"level\": \"239\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 239\n                },\n                {\n                    \"id\": 10128,\n                    \"level\": \"240\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 240\n                },\n                {\n                    \"id\": 10129,\n                    \"level\": \"241\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 241\n                },\n                {\n                    \"id\": 10130,\n                    \"level\": \"242\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 242\n                },\n                {\n                    \"id\": 10131,\n                    \"level\": \"243\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 243\n                },\n                {\n                    \"id\": 10132,\n                    \"level\": \"244\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 244\n                },\n                {\n                    \"id\": 10133,\n                    \"level\": \"245\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 245\n                },\n                {\n                    \"id\": 10134,\n                    \"level\": \"246\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 246\n                },\n                {\n                    \"id\": 10135,\n                    \"level\": \"247\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 247\n                },\n                {\n                    \"id\": 10136,\n                    \"level\": \"248\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 248\n                },\n                {\n                    \"id\": 10137,\n                    \"level\": \"249\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 249\n                },\n                {\n                    \"id\": 10138,\n                    \"level\": \"250\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 250\n                },\n                {\n                    \"id\": 10139,\n                    \"level\": \"251\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 251\n                },\n                {\n                    \"id\": 10140,\n                    \"level\": \"252\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 252\n                },\n                {\n                    \"id\": 10141,\n                    \"level\": \"253\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 253\n                },\n                {\n                    \"id\": 10142,\n                    \"level\": \"254\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 254\n                },\n                {\n                    \"id\": 10143,\n                    \"level\": \"255\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 255\n                },\n                {\n                    \"id\": 10144,\n                    \"level\": \"256\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 256\n                },\n                {\n                    \"id\": 10145,\n                    \"level\": \"257\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 257\n                },\n                {\n                    \"id\": 10146,\n                    \"level\": \"258\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 258\n                },\n                {\n                    \"id\": 10147,\n                    \"level\": \"259\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 259\n                },\n                {\n                    \"id\": 10148,\n                    \"level\": \"260\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 260\n                },\n                {\n                    \"id\": 10149,\n                    \"level\": \"261\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 261\n                },\n                {\n                    \"id\": 10150,\n                    \"level\": \"262\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 262\n                },\n                {\n                    \"id\": 10151,\n                    \"level\": \"263\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 263\n                },\n                {\n                    \"id\": 10152,\n                    \"level\": \"264\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 264\n                },\n                {\n                    \"id\": 10153,\n                    \"level\": \"265\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 265\n                },\n                {\n                    \"id\": 10154,\n                    \"level\": \"266\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 266\n                },\n                {\n                    \"id\": 10155,\n                    \"level\": \"267\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 267\n                },\n                {\n                    \"id\": 10156,\n                    \"level\": \"268\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 268\n                },\n                {\n                    \"id\": 10157,\n                    \"level\": \"269\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 269\n                },\n                {\n                    \"id\": 10158,\n                    \"level\": \"270\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 270\n                },\n                {\n                    \"id\": 10159,\n                    \"level\": \"271\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 271\n                },\n                {\n                    \"id\": 10160,\n                    \"level\": \"272\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 272\n                },\n                {\n                    \"id\": 10161,\n                    \"level\": \"273\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 273\n                },\n                {\n                    \"id\": 10162,\n                    \"level\": \"274\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 274\n                },\n                {\n                    \"id\": 10163,\n                    \"level\": \"275\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 275\n                },\n                {\n                    \"id\": 10164,\n                    \"level\": \"276\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 276\n                },\n                {\n                    \"id\": 10165,\n                    \"level\": \"277\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 277\n                },\n                {\n                    \"id\": 10166,\n                    \"level\": \"278\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 278\n                },\n                {\n                    \"id\": 10167,\n                    \"level\": \"279\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 279\n                },\n                {\n                    \"id\": 10168,\n                    \"level\": \"280\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 280\n                },\n                {\n                    \"id\": 10169,\n                    \"level\": \"281\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 281\n                },\n                {\n                    \"id\": 10170,\n                    \"level\": \"282\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 282\n                },\n                {\n                    \"id\": 10171,\n                    \"level\": \"283\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 283\n                },\n                {\n                    \"id\": 10172,\n                    \"level\": \"284\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 284\n                },\n                {\n                    \"id\": 10173,\n                    \"level\": \"285\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 285\n                },\n                {\n                    \"id\": 10174,\n                    \"level\": \"286\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 286\n                },\n                {\n                    \"id\": 10175,\n                    \"level\": \"287\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 287\n                },\n                {\n                    \"id\": 10176,\n                    \"level\": \"288\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 288\n                },\n                {\n                    \"id\": 10177,\n                    \"level\": \"289\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 289\n                },\n                {\n                    \"id\": 10178,\n                    \"level\": \"290\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 290\n                },\n                {\n                    \"id\": 10179,\n                    \"level\": \"291\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 291\n                },\n                {\n                    \"id\": 10180,\n                    \"level\": \"292\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 292\n                },\n                {\n                    \"id\": 10181,\n                    \"level\": \"293\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 293\n                },\n                {\n                    \"id\": 10182,\n                    \"level\": \"294\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 294\n                },\n                {\n                    \"id\": 10183,\n                    \"level\": \"295\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 295\n                },\n                {\n                    \"id\": 10184,\n                    \"level\": \"296\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 296\n                },\n                {\n                    \"id\": 10185,\n                    \"level\": \"297\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 297\n                },\n                {\n                    \"id\": 10186,\n                    \"level\": \"298\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 298\n                },\n                {\n                    \"id\": 10187,\n                    \"level\": \"299\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 299\n                },\n                {\n                    \"id\": 10188,\n                    \"level\": \"300\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 300\n                },\n                {\n                    \"id\": 10189,\n                    \"level\": \"301\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 301\n                },\n                {\n                    \"id\": 10190,\n                    \"level\": \"302\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 302\n                },\n                {\n                    \"id\": 10191,\n                    \"level\": \"303\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 303\n                },\n                {\n                    \"id\": 10192,\n                    \"level\": \"304\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 304\n                },\n                {\n                    \"id\": 10193,\n                    \"level\": \"305\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 305\n                },\n                {\n                    \"id\": 10194,\n                    \"level\": \"306\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 306\n                },\n                {\n                    \"id\": 10195,\n                    \"level\": \"307\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 307\n                },\n                {\n                    \"id\": 10196,\n                    \"level\": \"308\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 308\n                },\n                {\n                    \"id\": 10197,\n                    \"level\": \"309\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 309\n                },\n                {\n                    \"id\": 10198,\n                    \"level\": \"310\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 310\n                },\n                {\n                    \"id\": 10199,\n                    \"level\": \"311\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 311\n                },\n                {\n                    \"id\": 10200,\n                    \"level\": \"312\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 312\n                },\n                {\n                    \"id\": 10201,\n                    \"level\": \"313\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 313\n                },\n                {\n                    \"id\": 10202,\n                    \"level\": \"314\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 314\n                },\n                {\n                    \"id\": 10203,\n                    \"level\": \"315\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 315\n                },\n                {\n                    \"id\": 10204,\n                    \"level\": \"316\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 316\n                },\n                {\n                    \"id\": 10205,\n                    \"level\": \"317\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 317\n                },\n                {\n                    \"id\": 10206,\n                    \"level\": \"318\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 318\n                },\n                {\n                    \"id\": 10207,\n                    \"level\": \"319\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 319\n                },\n                {\n                    \"id\": 10208,\n                    \"level\": \"320\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 320\n                },\n                {\n                    \"id\": 10209,\n                    \"level\": \"321\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 321\n                },\n                {\n                    \"id\": 10210,\n                    \"level\": \"322\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 322\n                },\n                {\n                    \"id\": 10211,\n                    \"level\": \"323\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 323\n                },\n                {\n                    \"id\": 10212,\n                    \"level\": \"324\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 324\n                },\n                {\n                    \"id\": 10213,\n                    \"level\": \"325\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 325\n                },\n                {\n                    \"id\": 10214,\n                    \"level\": \"326\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 326\n                },\n                {\n                    \"id\": 10215,\n                    \"level\": \"327\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 327\n                },\n                {\n                    \"id\": 10216,\n                    \"level\": \"328\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 328\n                },\n                {\n                    \"id\": 10217,\n                    \"level\": \"329\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 329\n                },\n                {\n                    \"id\": 10218,\n                    \"level\": \"330\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 330\n                },\n                {\n                    \"id\": 10219,\n                    \"level\": \"331\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 331\n                },\n                {\n                    \"id\": 10220,\n                    \"level\": \"332\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 332\n                },\n                {\n                    \"id\": 10221,\n                    \"level\": \"333\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 333\n                },\n                {\n                    \"id\": 10222,\n                    \"level\": \"334\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 334\n                },\n                {\n                    \"id\": 10223,\n                    \"level\": \"335\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 335\n                },\n                {\n                    \"id\": 10224,\n                    \"level\": \"336\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 336\n                },\n                {\n                    \"id\": 10225,\n                    \"level\": \"337\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 337\n                },\n                {\n                    \"id\": 10226,\n                    \"level\": \"338\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 338\n                },\n                {\n                    \"id\": 10227,\n                    \"level\": \"339\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 339\n                },\n                {\n                    \"id\": 10228,\n                    \"level\": \"340\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 340\n                },\n                {\n                    \"id\": 10229,\n                    \"level\": \"341\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 341\n                },\n                {\n                    \"id\": 10230,\n                    \"level\": \"342\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 342\n                },\n                {\n                    \"id\": 10231,\n                    \"level\": \"343\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 343\n                },\n                {\n                    \"id\": 10232,\n                    \"level\": \"344\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 344\n                },\n                {\n                    \"id\": 10233,\n                    \"level\": \"345\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 345\n                },\n                {\n                    \"id\": 10234,\n                    \"level\": \"346\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 346\n                },\n                {\n                    \"id\": 10235,\n                    \"level\": \"347\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 347\n                },\n                {\n                    \"id\": 10236,\n                    \"level\": \"348\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 348\n                },\n                {\n                    \"id\": 10237,\n                    \"level\": \"349\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 349\n                },\n                {\n                    \"id\": 10238,\n                    \"level\": \"350\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 350\n                },\n                {\n                    \"id\": 10239,\n                    \"level\": \"351\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 351\n                },\n                {\n                    \"id\": 10240,\n                    \"level\": \"352\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 352\n                },\n                {\n                    \"id\": 10241,\n                    \"level\": \"353\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 353\n                },\n                {\n                    \"id\": 10242,\n                    \"level\": \"354\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 354\n                },\n                {\n                    \"id\": 10243,\n                    \"level\": \"355\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 355\n                },\n                {\n                    \"id\": 10244,\n                    \"level\": \"356\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 356\n                },\n                {\n                    \"id\": 10245,\n                    \"level\": \"357\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 357\n                },\n                {\n                    \"id\": 10246,\n                    \"level\": \"358\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 358\n                },\n                {\n                    \"id\": 10247,\n                    \"level\": \"359\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 359\n                },\n                {\n                    \"id\": 10248,\n                    \"level\": \"360\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 360\n                },\n                {\n                    \"id\": 10249,\n                    \"level\": \"361\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 361\n                },\n                {\n                    \"id\": 10250,\n                    \"level\": \"362\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 362\n                },\n                {\n                    \"id\": 10251,\n                    \"level\": \"363\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 363\n                },\n                {\n                    \"id\": 10252,\n                    \"level\": \"364\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 364\n                },\n                {\n                    \"id\": 10253,\n                    \"level\": \"365\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 365\n                },\n                {\n                    \"id\": 10254,\n                    \"level\": \"366\",\n                    \"type\": \"day\",\n                    \"type_id\": 2,\n                    \"is_default\": false,\n                    \"value\": 366\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1693,\n            \"alias\": \"snow_package\",\n            \"name\": \"Snow Package\",\n            \"coverages\": [\n                {\n                    \"id\": 2788,\n                    \"benefit_type\": {\n                        \"id\": 29,\n                        \"benefit_type_id\": 52,\n                        \"name\": \"Australian Snow\",\n                        \"description\": \"Australian Snow\",\n                        \"key\": \"snow\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2777,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10255,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1694,\n            \"alias\": \"motorcycle_moped_pack\",\n            \"name\": \"Motorcycle / Moped Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2789,\n                    \"benefit_type\": {\n                        \"id\": 30,\n                        \"benefit_type_id\": 53,\n                        \"name\": \"Australian Motorcycle\",\n                        \"description\": \"Australian Motorcycle\",\n                        \"key\": \"motorcycle\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2778,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10256,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1695,\n            \"alias\": \"cruise_pack\",\n            \"name\": \"Cruise Pack\",\n            \"coverages\": [\n                {\n                    \"id\": 2790,\n                    \"benefit_type\": {\n                        \"id\": 31,\n                        \"benefit_type_id\": 54,\n                        \"name\": \"Australian Cruise\",\n                        \"description\": \"Australian Cruise\",\n                        \"key\": \"cruise\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2779,\n                            \"value\": 0,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10257,\n                    \"level\": \"1\",\n                    \"type\": \"inclusion\",\n                    \"type_id\": 4,\n                    \"is_default\": true,\n                    \"value\": 1\n                }\n            ],\n            \"attributes\": []\n        },\n        {\n            \"id\": 1696,\n            \"alias\": \"pet_cover\",\n            \"name\": \"Pet Cover\",\n            \"coverages\": [\n                {\n                    \"id\": 2791,\n                    \"benefit_type\": {\n                        \"id\": 32,\n                        \"benefit_type_id\": 19,\n                        \"name\": \"Australian Pet Cover\",\n                        \"description\": \"Australian Pet Cover\",\n                        \"key\": \"pet_cover_kennel_delay\",\n                        \"limits\": []\n                    },\n                    \"limits\": [\n                        {\n                            \"id\": 2780,\n                            \"value\": 500,\n                            \"value_type\": {\n                                \"id\": 1,\n                                \"name\": \"flat\",\n                                \"symbol\": \"$\",\n                                \"created_at\": \"2021-08-17T04:25:17.000000Z\",\n                                \"updated_at\": \"2021-08-17T04:25:17.000000Z\"\n                            },\n                            \"type\": [\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"distinct entry\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"has_deductible\": false,\n                    \"deductible\": 0\n                }\n            ],\n            \"validations\": [],\n            \"levels\": [\n                {\n                    \"id\": 10258,\n                    \"level\": \"300\",\n                    \"type\": \"$ per day\",\n                    \"type_id\": 3,\n                    \"is_default\": true,\n                    \"value\": 300\n                }\n            ],\n            \"attributes\": []\n        }\n    ]\n}"}],"_postman_id":"84a54eb8-4ab4-4483-8035-c8d7454cf94b"}],"id":"fb66d410-368c-4c13-9c73-1bada062edbc","description":"<p>To make your flow dynamic it is necessary to pull all the \"related data\" for your product. Related data includes states and countries in which certain products can be sold (host countries and states), which destinations are allowed for a given product (destination countries), etc. This allows battleface to manage compliance around certain geographies and products so that you don't have to. If something changes for a product or region, you don't need to worry about it.</p>\n<p>An example of this would be in the destination countries. At times we may need to disable a country due to current events out of our control. If you utilize the get destination country endpoint, your system would be aware of this change before receiving an error after submitting an order for a destination that is not available.</p>\n<p>We would suggest calling these endpoints once per day:</p>\n<ul>\n<li><p><a href=\"https://developers.battleface.com/#5cb1236b-0c99-4208-b8e2-929e7cffc0f5\"><i><b>Get Countries</b></i></a><strong>:</strong> Use this to retrieve a list of home countries and destination countries allowed for this product. It also provides a list of host country states, if applicable</p>\n</li>\n<li><p><a href=\"https://developers.battleface.com/#ba420e5a-73a4-44a4-9dca-449fe2153093\"><i><b>Get Host Countries</b></i></a><strong>:</strong> This endpoint can be used if you need to view the host countries only</p>\n</li>\n<li><p><a href=\"https://developers.battleface.com/#1a591aad-c03a-4b55-88bf-4a78c38fb76d\"><i><b>Get Destination Countries</b></i></a><strong>:</strong> If needed, you can call this endpoint to view a list of allowable destination countries only</p>\n</li>\n<li><p><a href=\"https://developers.battleface.com/#d0261de1-5233-41f9-baed-a3c830f15ef2\"><i><b>Get Host Country State</b></i></a><strong>:</strong> Get a list of available states for each country. (Only applicable for Canada, Switzerland, and United States.)</p>\n</li>\n<li><p><a href=\"https://developers.battleface.com/#eefda881-cb68-4814-b0fc-ffd26504b205\"><i><b>Get Product Package by State</b></i></a><strong>:</strong> Get a list of packages available for a given product in a given country state</p>\n</li>\n<li><p><a href=\"https://developers.battleface.com/#84a54eb8-4ab4-4483-8035-c8d7454cf94b\"><i><b>Get Product Package by Country</b></i></a><strong>:</strong> Get a list of packages available for a given product in a given country</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"9b7cf517-19a3-4846-b265-63e5206d454e"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"e3c157a2-886d-4373-9d5b-c5fed49600a7"}}],"_postman_id":"fb66d410-368c-4c13-9c73-1bada062edbc"}],"id":"a3ddf608-1629-4aba-8f4d-30b79adc1d70","_postman_id":"a3ddf608-1629-4aba-8f4d-30b79adc1d70","description":"","auth":{"type":"bearer","bearer":{"token":"{{api_token}}"},"isInherited":true,"source":{"_postman_id":"547241a1-e4e6-4769-b0bc-4f197a221a67","id":"547241a1-e4e6-4769-b0bc-4f197a221a67","name":"battleface Partner API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"token":"{{api_token}}"}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"8cd221c2-7fc3-45cf-8dea-0e2a829e2033"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"12f65024-257d-4968-b348-3ca71f30c489"}}],"variable":[{"key":"start_date_add_year","value":""},{"key":"current_date","value":""},{"key":"start_date","value":""},{"key":"end_date","value":""}]}