{"info":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","description":"<html><head></head><body><h1 id=\"high-level-flow\">High Level Flow</h1>\n<p>There are 2 primary steps in the process of selling insurance products:</p>\n<p><strong>Step 1:</strong> Create an order using our Store Order Only endpoint. The order will be put into a pending status in our system.</p>\n<p><strong>Step 2:</strong> Once the transaction is finalized, use Process Payment to move the pending order to approved.</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>• 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>Payment error.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    “error”: “Incorrect card details.”\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":"9b471f8a-2e17-4bba-ae0b-628467537ae5","publishedId":"2sAYJAdxZe","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-07-28T15:17:33.000Z"},"item":[{"name":"Partner API","item":[{"name":"Order","item":[{"name":"Store Order Only","id":"d1a4c0c5-ceee-45f2-beb7-d08f03960a6b","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            \"age_at_travel\": 35,\r\n            \"passport_number\": \"1233123123\",// required\r\n            \"member_id\": \"213-213-123\",// required\r\n            \"gender\": \"male\",// required\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.</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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"820b7c55-9232-44a8-9ac3-5f7e5f9437e0","id":"820b7c55-9232-44a8-9ac3-5f7e5f9437e0","name":"Order","type":"folder"}},"urlObject":{"path":["api","partner","orders","condensed","storage"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"ac42489a-44af-41df-9a14-d19d1587a640","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":"c2fcae40-6df3-44e8-9317-db2f7e982450","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":"d1a4c0c5-ceee-45f2-beb7-d08f03960a6b"},{"name":"Store Order Generic","event":[{"listen":"prerequest","script":{"id":"44d9502f-4006-4371-a6ba-d69f268a6754","exec":["pm.collectionVariables.set('order', Math.random().toString(24).slice(2).toUpperCase());\r","pm.collectionVariables.set('policy', Math.random().toString(24).slice(2).toUpperCase());\r","pm.collectionVariables.set('quote', Math.random().toString(24).slice(2).toUpperCase());\r","// pm.collectionVariables.set('order', 'MJBF0GCMDEAG');\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c9bd1efb-5c67-445f-ae84-f51e5ed2e805","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"currency_id\":\"USD\",\r\n   \"product_id\":\"001e018d-c862-49e9-875d-ac4ea5d64121\",\r\n   \"product_name\": \"My Product Name\",\r\n   \"product_alias\": \"my_product_alias\",\r\n   \"product_code\": \"my-product-code\",\r\n   \"start_at\":\"2023-06-01\",\r\n   \"end_at\":\"2023-06-15\",\r\n   \"deposit_at\":\"2023-06-01\",\r\n   \"signed_at\":\"2023-06-01\",\r\n   \"status\": \"Approved\",\r\n   \"ordered_at\":\"2023-06-01\",\r\n   \"order_number\":\"{{order}}\",\r\n   \"policies\": [\r\n       {\r\n           \"policy_number\": \"{{policy}}-1\",\r\n           \"files\": [\r\n               {\r\n                   \"type\": \"policy\",\r\n                   \"name\": \"Policy Document\",\r\n                   \"uri\": \"https://policy-files.com/{{policy}}-1.pdf\"\r\n               }\r\n           ]\r\n       }\r\n   ],\r\n   \"flags\":{\r\n      \"trigger_sanction_search\":false,\r\n      \"generate_policy_document\": false,\r\n      \"send_policy_emails\": false\r\n   },\r\n   \"details\": [\r\n               {\r\n            \"type\": \"package\",      \r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"medical_and_emergency_expenses\",\r\n            \"for\": \"emergency_medical_expense\",\r\n            \"value\": \"150000000\",\r\n            \"product_package_alias\": \"base_package\"\r\n        },       \r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"medical_and_emergency_expenses\",\r\n            \"for\": \"emergency_medical_expense_sports\",\r\n            \"value\": \"300000\",\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"personal_accident\",\r\n            \"for\": \"death&perm_ttl_disab_exc_air_inc_terror\",\r\n            \"value\": \"650000\",\r\n            \"product_package_alias\": \"base_package\"\r\n        },       \r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"personal_accident\",\r\n            \"for\": \"death_ptd_insuran_air_trav_terr\",\r\n            \"value\": \"300000\",\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"travel_assistance\",\r\n            \"for\": \"consular_embassy_referral\",\r\n            \"value\": \"assistance_only\",\r\n            \"product_package_alias\": \"base_package\"\r\n        }\r\n    ],\r\n   \"applicants\":[\r\n      {\r\n         \"first_name\":\"Test\",\r\n         \"middle_name\":\"Optional\",\r\n         \"last_name\":\"Tester\",\r\n         \"dob\":\"2000-01-01\",\r\n         \"age_at_travel\": 23,\r\n         \"email\":\"applicant@example.com\",\r\n         \"contact_number\": \"10001112222\",\r\n         \"address\":\"123 Test Street\",\r\n         \"city\":\"Test City\",\r\n         \"post_code\":\"00000\",\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\":\"Test\",\r\n        \"middle_name\":\"Optional\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       },\r\n       {\r\n        \"type\": \"dependant\",\r\n        \"first_name\":\"Test Jr.\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       }\r\n   ],\r\n   \"beneficiary\":{\r\n      \"first_name\":\"Test\",\r\n      \"middle_name\":\"Optional\",\r\n      \"last_name\":\"Beneficiary\",\r\n      \"email\":\"mail@example.com\"\r\n   },\r\n   \"destinations\":[\r\n      {\r\n         \"country_code\":\"US\"\r\n      }\r\n   ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/generic/intake","description":"<p>Persist orders into the system.</p>\n","urlObject":{"path":["api","partner","orders","generic","intake"],"host":["{{host_gateway}}"],"query":[{"disabled":true,"key":"action","value":"replace"},{"disabled":true,"key":"test","value":"true"}],"variable":[]}},"response":[{"id":"014e2fc6-b30e-499d-80e5-0aa489e809f0","name":"Store Order","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"currency_id\":\"USD\",\r\n   \"product_id\":\"001e018d-c862-49e9-875d-ac4ea5d64121\",\r\n   \"product_name\": \"My Product Name\",\r\n   \"product_alias\": \"my_product_alias\",\r\n   \"product_code\": \"my-product-code\",\r\n   \"start_at\":\"2023-06-01\",\r\n   \"end_at\":\"2023-06-15\",\r\n   \"deposit_at\":\"2023-06-01\",\r\n   \"signed_at\":\"2023-06-01\",\r\n   \"status\": \"Approved\",\r\n   \"ordered_at\":\"2023-06-01\",\r\n   \"order_number\":\"{{order}}\",\r\n   \"policies\": [\r\n       {\r\n           \"policy_number\": \"{{policy}}-1\",\r\n           \"files\": [\r\n               {\r\n                   \"type\": \"policy\",\r\n                   \"name\": \"Policy Document\",\r\n                   \"uri\": \"https://policy-files.com/{{policy}}-1.pdf\"\r\n               }\r\n           ]\r\n       }\r\n   ],\r\n   \"flags\":{\r\n      \"trigger_sanction_search\":false,\r\n      \"generate_policy_document\": false,\r\n      \"send_policy_emails\": false\r\n   },\r\n   \"details\": [\r\n        {\r\n            \"type\": \"package\",\r\n            \"amount\": 125,\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"trip_cancellation\",\r\n            \"value\": \"100_percent_of_trip_cost\",\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"amount\": 50,\r\n            \"product_package_alias\": \"trip_delay_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"trip_delay\",\r\n            \"value\": \"2500\",\r\n            \"product_package_alias\": \"trip_delay_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_alias\": \"flight_accident_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"flight_accident\",\r\n            \"value\": \"500000\",\r\n            \"product_package_alias\": \"flight_accident_package\"\r\n        }\r\n    ],\r\n   \"applicants\":[\r\n      {\r\n         \"first_name\":\"Test\",\r\n         \"middle_name\":\"Optional\",\r\n         \"last_name\":\"Tester\",\r\n         \"dob\":\"2000-01-01\",\r\n         \"age_at_travel\": 23,\r\n         \"email\":\"applicant@example.com\",\r\n         \"contact_number\": \"10001112222\",\r\n         \"address\":\"123 Test Street\",\r\n         \"city\":\"Test City\",\r\n         \"post_code\":\"00000\",\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\":\"Test\",\r\n        \"middle_name\":\"Optional\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       },\r\n       {\r\n        \"type\": \"dependant\",\r\n        \"first_name\":\"Test Jr.\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       }\r\n   ],\r\n   \"beneficiary\":{\r\n      \"first_name\":\"Test\",\r\n      \"middle_name\":\"Optional\",\r\n      \"last_name\":\"Beneficiary\",\r\n      \"email\":\"mail@example.com\"\r\n   },\r\n   \"destinations\":[\r\n      {\r\n         \"country_code\":\"US\"\r\n      }\r\n   ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{host_gateway}}/api/partner/orders/generic/intake","host":["{{host_gateway}}"],"path":["api","partner","orders","generic","intake"],"query":[{"key":"action","value":"replace","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.1"},{"key":"Date","value":"Thu, 31 Aug 2023 15:27:24 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.20"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order_number\": \"1AA3B4911BKE\",\n        \"client_id\": 1,\n        \"status\": \"Approved\",\n        \"premium\": 175,\n        \"total\": 175,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2023-08-31T15:27:24.040000Z\",\n        \"ordered_at\": \"2023-06-01T00:00:00.000000Z\",\n        \"signed_at\": \"2023-06-01T00:00:00.000000Z\",\n        \"approved_at\": \"2023-08-31T15:27:24.040000Z\",\n        \"items\": [\n            {\n                \"id\": \"1fe5e219-e82c-4274-ad33-cbe01e9a56dd\",\n                \"product_id\": 1045,\n                \"program_id\": 22,\n                \"product_uuid\": \"001e018d-c862-49e9-875d-ac4ea5d64121\",\n                \"product_name\": \"My Product Name\",\n                \"product_alias\": \"my_product_alias\",\n                \"product_code\": \"my-product-code\",\n                \"product_major_id\": 46,\n                \"product_minor_id\": 110,\n                \"policy_number\": \"39D9C4EEC0DN-1\",\n                \"files\": [\n                    {\n                        \"type\": \"policy\",\n                        \"name\": \"Policy Document\",\n                        \"uri\": \"https://policy-files.com/39D9C4EEC0DN-1.pdf\"\n                    }\n                ],\n                \"start_at\": \"2023-06-01\",\n                \"end_at\": \"2023-06-15\",\n                \"deposit_at\": \"2023-06-01\",\n                \"details\": [\n                    {\n                        \"id\": \"2552c069-f4bd-4bed-8ccc-cc96f21b3c68\",\n                        \"type\": \"package\",\n                        \"amount\": 125,\n                        \"product_package_alias\": \"base_package\"\n                    },\n                    {\n                        \"id\": \"2deecc8c-0a1c-410e-8778-50ba2a9ed526\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"trip_cancellation\",\n                        \"value\": \"100_percent_of_trip_cost\",\n                        \"product_package_alias\": \"base_package\"\n                    },\n                    {\n                        \"id\": \"5ff5a88c-a178-4e37-98d8-4badd8b0afd8\",\n                        \"type\": \"package\",\n                        \"amount\": 50,\n                        \"product_package_alias\": \"trip_delay_package\"\n                    },\n                    {\n                        \"id\": \"5896fa83-b806-45a5-b732-161f92517023\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"trip_delay\",\n                        \"value\": \"2500\",\n                        \"product_package_alias\": \"trip_delay_package\"\n                    },\n                    {\n                        \"id\": \"235668a1-6135-474c-a6bf-c2d9a5f6f16e\",\n                        \"type\": \"package\",\n                        \"product_package_alias\": \"flight_accident_package\"\n                    },\n                    {\n                        \"id\": \"cc50d3c6-d03e-4142-a091-52c54ab6c04e\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"flight_accident\",\n                        \"value\": \"500000\",\n                        \"product_package_alias\": \"flight_accident_package\"\n                    },\n                    {\n                        \"id\": \"07ffce18-1210-40d7-b929-030098540f3d\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"cc8333f6-7a29-4894-89ec-8afeab56740a\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 175\n                    },\n                    {\n                        \"id\": \"20507480-f569-4fb1-9631-c6c977131749\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 175\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Test\",\n                    \"middle_name\": \"Optional\",\n                    \"last_name\": \"Tester\",\n                    \"dob\": \"2000-01-01\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"Test\",\n                    \"middle_name\": \"Optional\",\n                    \"last_name\": \"Beneficiary\",\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                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Test\",\n            \"middle_name\": \"Optional\",\n            \"last_name\": \"Tester\",\n            \"dob\": \"2000-01-01\",\n            \"age_at_travel\": 23,\n            \"email\": \"applicant@example.com\",\n            \"contact_number\": \"10001112222\",\n            \"address\": \"123 Test Street\",\n            \"city\": \"Test City\",\n            \"post_code\": \"00000\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"ip_address\": \"0.0.0.0\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"affiliate@example.com\"\n        },\n        \"details\": [],\n        \"insured\": [\n            {\n                \"type\": \"visitor\",\n                \"first_name\": \"Test\",\n                \"middle_name\": \"Optional\",\n                \"last_name\": \"Tester\",\n                \"dob\": \"2000-01-01\",\n                \"trip_cost\":1\n            },\n            {\n                \"type\": \"dependant\",\n                \"first_name\": \"Test Jr.\",\n                \"last_name\": \"Tester\",\n                \"dob\": \"2000-01-01\",\n                \"trip_cost\":1\n            }\n        ]\n    }\n}"}],"_postman_id":"c9bd1efb-5c67-445f-ae84-f51e5ed2e805"},{"name":"Store Order Annual Generic","event":[{"listen":"prerequest","script":{"id":"44d9502f-4006-4371-a6ba-d69f268a6754","exec":["pm.collectionVariables.set('order', Math.random().toString(24).slice(2).toUpperCase());\r","pm.collectionVariables.set('policy', Math.random().toString(24).slice(2).toUpperCase());\r","pm.collectionVariables.set('quote', Math.random().toString(24).slice(2).toUpperCase());\r","// pm.collectionVariables.set('order', 'MJBF0GCMDEAG');\r",""],"type":"text/javascript"}}],"id":"583a0e79-6dde-4cef-ba1d-fae643f12f57","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"currency_id\":\"USD\",\r\n   \"product_id\":\"001e018d-c862-49e9-875d-ac4ea5d64121\",\r\n   \"product_name\": \"My Product Name\",\r\n   \"product_alias\": \"my_product_alias\",\r\n   \"product_code\": \"my-product-code\",\r\n   \"start_at\":\"2023-07-01\",\r\n   \"end_at\":\"2023-07-15\",\r\n   \"deposit_at\":\"2023-06-01\",\r\n   \"signed_at\":\"2023-06-01\",\r\n   \"status\": \"Approved\",\r\n   \"ordered_at\":\"2023-06-01\",\r\n   \"order_number\":\"{{order}}\",\r\n   \"policies\": [\r\n       {\r\n           \"policy_number\": \"{{policy}}-1\",\r\n           \"files\": [\r\n               {\r\n                   \"type\": \"policy\",\r\n                   \"name\": \"Policy Document\",\r\n                   \"uri\": \"https://policy-files.com/{{policy}}-1.pdf\"\r\n               }\r\n           ]\r\n       }\r\n   ],\r\n   \"flags\":{\r\n      \"annual_plan\": true,\r\n      \"trigger_sanction_search\":false,\r\n      \"generate_policy_document\": false,\r\n      \"send_policy_emails\": false\r\n   },\r\n   \"segments\": [\r\n       {\r\n           \"id\": \"{{segment_id}}\",\r\n           \"type\": \"optional\",\r\n           \"details\": [\r\n                {\r\n                    \"type\": \"limit\",\r\n                    \"detail\": \"start_date\",\r\n                    \"for\": \"trip_cancellation\",\r\n                    \"value\": \"2023-06-01\",\r\n                    \"product_package_alias\": \"base_package\"\r\n                },\r\n                {\r\n                    \"type\": \"limit\",\r\n                    \"detail\": \"end_date\",\r\n                    \"for\": \"trip_cancellation\",\r\n                    \"value\": \"2023-07-01\",\r\n                    \"product_package_alias\": \"base_package\"\r\n                }\r\n           ],\r\n           \"insured\": [\r\n                {\r\n                    \"type\": \"visitor\",\r\n                    \"first_name\":\"Test\",\r\n                    \"middle_name\":\"Optional\",\r\n                    \"last_name\":\"Tester\",\r\n                    \"dob\":\"2000-01-01\",\r\n                    \"trip_cost\":1\r\n                },\r\n                {\r\n                    \"type\": \"dependant\",\r\n                    \"first_name\":\"Test Jr.\",\r\n                    \"last_name\":\"Tester\",\r\n                    \"dob\":\"2000-01-01\",\r\n                    \"trip_cost\":1\r\n                }\r\n           ],\r\n            \"destinations\":[\r\n                {\r\n                    \"country_code\":\"US\"\r\n                }\r\n            ]\r\n       }\r\n   ],\r\n   \"details\": [\r\n        {\r\n            \"type\": \"package\",\r\n            \"amount\": 125,\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"trip_cancellation\",\r\n            \"value\": \"100_percent_of_trip_cost\",\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"amount\": 50,\r\n            \"product_package_alias\": \"trip_delay_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"trip_delay\",\r\n            \"value\": \"2500\",\r\n            \"product_package_alias\": \"trip_delay_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_alias\": \"flight_accident_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"flight_accident\",\r\n            \"value\": \"500000\",\r\n            \"product_package_alias\": \"flight_accident_package\"\r\n        }\r\n    ],\r\n   \"applicants\":[\r\n      {\r\n         \"first_name\":\"Test\",\r\n         \"middle_name\":\"Optional\",\r\n         \"last_name\":\"Tester\",\r\n         \"dob\":\"2000-01-01\",\r\n         \"age_at_travel\": 23,\r\n         \"email\":\"applicant@example.com\",\r\n         \"contact_number\": \"10001112222\",\r\n         \"address\":\"123 Test Street\",\r\n         \"city\":\"Test City\",\r\n         \"post_code\":\"00000\",\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\":\"Test\",\r\n        \"middle_name\":\"Optional\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       },\r\n       {\r\n        \"type\": \"dependant\",\r\n        \"first_name\":\"Test Jr.\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       }\r\n   ],\r\n   \"beneficiary\":{\r\n      \"first_name\":\"Test\",\r\n      \"middle_name\":\"Optional\",\r\n      \"last_name\":\"Beneficiary\",\r\n      \"email\":\"mail@example.com\"\r\n   },\r\n   \"destinations\":[\r\n      {\r\n         \"country_code\":\"US\"\r\n      }\r\n   ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/generic/intake","description":"<p>Persist orders into the system.</p>\n","urlObject":{"path":["api","partner","orders","generic","intake"],"host":["{{host_gateway}}"],"query":[{"disabled":true,"key":"action","value":"replace"},{"disabled":true,"key":"test","value":"true"}],"variable":[]}},"response":[{"id":"4819ba19-c4c8-4371-a099-2bb106525da6","name":"Store Order Annual","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"currency_id\":\"USD\",\r\n   \"product_id\":\"001e018d-c862-49e9-875d-ac4ea5d64121\",\r\n   \"product_name\": \"My Product Name\",\r\n   \"product_alias\": \"my_product_alias\",\r\n   \"product_code\": \"my-product-code\",\r\n   \"start_at\":\"2023-07-01\",\r\n   \"end_at\":\"2023-07-15\",\r\n   \"deposit_at\":\"2023-06-01\",\r\n   \"signed_at\":\"2023-06-01\",\r\n   \"status\": \"Approved\",\r\n   \"ordered_at\":\"2023-06-01\",\r\n   \"order_number\":\"\",\r\n   \"policies\": [\r\n       {\r\n           \"policy_number\": \"-1\",\r\n           \"files\": [\r\n               {\r\n                   \"type\": \"policy\",\r\n                   \"name\": \"Policy Document\",\r\n                   \"uri\": \"https://policy-files.com/-1.pdf\"\r\n               }\r\n           ]\r\n       }\r\n   ],\r\n   \"flags\":{\r\n      \"annual_plan\": true,\r\n      \"trigger_sanction_search\":false,\r\n      \"generate_policy_document\": false,\r\n      \"send_policy_emails\": false\r\n   },\r\n   \"segments\": [\r\n       {\r\n           \"id\": \"{{segment_id}}\",\r\n           \"type\": \"optional\",\r\n           \"details\": [\r\n                {\r\n                    \"type\": \"limit\",\r\n                    \"detail\": \"start_date\",\r\n                    \"for\": \"trip_cancellation\",\r\n                    \"value\": \"2023-06-01\",\r\n                    \"product_package_alias\": \"base_package\"\r\n                },\r\n                {\r\n                    \"type\": \"limit\",\r\n                    \"detail\": \"end_date\",\r\n                    \"for\": \"trip_cancellation\",\r\n                    \"value\": \"2023-07-01\",\r\n                    \"product_package_alias\": \"base_package\"\r\n                }\r\n           ],\r\n           \"insured\": [\r\n                {\r\n                    \"type\": \"visitor\",\r\n                    \"first_name\":\"Test\",\r\n                    \"middle_name\":\"Optional\",\r\n                    \"last_name\":\"Tester\",\r\n                    \"dob\":\"2000-01-01\",\r\n                    \"trip_cost\":1\r\n                },\r\n                {\r\n                    \"type\": \"dependant\",\r\n                    \"first_name\":\"Test Jr.\",\r\n                    \"last_name\":\"Tester\",\r\n                    \"dob\":\"2000-01-01\",\r\n                    \"trip_cost\":1\r\n                }\r\n           ],\r\n            \"destinations\":[\r\n                {\r\n                    \"country_code\":\"US\"\r\n                }\r\n            ]\r\n       }\r\n   ],\r\n   \"details\": [\r\n        {\r\n            \"type\": \"package\",\r\n            \"amount\": 125,\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"trip_cancellation\",\r\n            \"value\": \"100_percent_of_trip_cost\",\r\n            \"product_package_alias\": \"base_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"amount\": 50,\r\n            \"product_package_alias\": \"trip_delay_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"trip_delay\",\r\n            \"value\": \"2500\",\r\n            \"product_package_alias\": \"trip_delay_package\"\r\n        },\r\n        {\r\n            \"type\": \"package\",\r\n            \"product_package_alias\": \"flight_accident_package\"\r\n        },\r\n        {\r\n            \"type\": \"limit\",\r\n            \"detail\": \"benefit_limit\",\r\n            \"for\": \"flight_accident\",\r\n            \"value\": \"500000\",\r\n            \"product_package_alias\": \"flight_accident_package\"\r\n        }\r\n    ],\r\n   \"applicants\":[\r\n      {\r\n         \"first_name\":\"Test\",\r\n         \"middle_name\":\"Optional\",\r\n         \"last_name\":\"Tester\",\r\n         \"dob\":\"2000-01-01\",\r\n         \"age_at_travel\": 23,\r\n         \"email\":\"applicant@example.com\",\r\n         \"contact_number\": \"10001112222\",\r\n         \"address\":\"123 Test Street\",\r\n         \"city\":\"Test City\",\r\n         \"post_code\":\"00000\",\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\":\"Test\",\r\n        \"middle_name\":\"Optional\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       },\r\n       {\r\n        \"type\": \"dependant\",\r\n        \"first_name\":\"Test Jr.\",\r\n        \"last_name\":\"Tester\",\r\n        \"dob\":\"2000-01-01\",\r\n        \"trip_cost\":1\r\n       }\r\n   ],\r\n   \"beneficiary\":{\r\n      \"first_name\":\"Test\",\r\n      \"middle_name\":\"Optional\",\r\n      \"last_name\":\"Beneficiary\",\r\n      \"email\":\"mail@example.com\"\r\n   },\r\n   \"destinations\":[\r\n      {\r\n         \"country_code\":\"US\"\r\n      }\r\n   ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{host_gateway}}/api/partner/orders/generic/intake","host":["{{host_gateway}}"],"path":["api","partner","orders","generic","intake"],"query":[{"key":"action","value":"replace","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.1"},{"key":"Date","value":"Thu, 31 Aug 2023 15:27:24 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.20"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order_number\": \"1AA3B4911BKE\",\n        \"client_id\": 1,\n        \"status\": \"Approved\",\n        \"premium\": 175,\n        \"total\": 175,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2023-08-31T15:27:24.040000Z\",\n        \"ordered_at\": \"2023-06-01T00:00:00.000000Z\",\n        \"signed_at\": \"2023-06-01T00:00:00.000000Z\",\n        \"approved_at\": \"2023-08-31T15:27:24.040000Z\",\n        \"items\": [\n            {\n                \"id\": \"1fe5e219-e82c-4274-ad33-cbe01e9a56dd\",\n                \"product_id\": 1045,\n                \"program_id\": 22,\n                \"product_uuid\": \"001e018d-c862-49e9-875d-ac4ea5d64121\",\n                \"product_name\": \"My Product Name\",\n                \"product_alias\": \"my_product_alias\",\n                \"product_code\": \"my-product-code\",\n                \"product_major_id\": 46,\n                \"product_minor_id\": 110,\n                \"policy_number\": \"39D9C4EEC0DN-1\",\n                \"files\": [\n                    {\n                        \"type\": \"policy\",\n                        \"name\": \"Policy Document\",\n                        \"uri\": \"https://policy-files.com/39D9C4EEC0DN-1.pdf\"\n                    }\n                ],\n                \"segments\": [\n                    {\n                        \"id\": \"{{segment_id}}\",\n                        \"type\": \"optional\",\n                        \"details\": [\n                            {\n                                \"id\": \"6500b7087880ebf14f09eb59\",\n                                \"type\": \"limit\",\n                                \"detail\": \"start_date\",\n                                \"for\": \"trip_cancellation\",\n                                \"value\": \"2023-06-01\",\n                                \"product_package_alias\": \"base_package\"\n                            },\n                            {\n                                \"id\": \"6500b7087880ebf14f09eb60\",\n                                \"type\": \"limit\",\n                                \"detail\": \"end_date\",\n                                \"for\": \"trip_cancellation\",\n                                \"value\": \"2023-07-01\",\n                                \"product_package_alias\": \"base_package\"\n                            }\n                        ],\n                        \"insured\": [\n                            {\n                                \"type\": \"visitor\",\n                                \"first_name\":\"Test\",\n                                \"middle_name\":\"Optional\",\n                                \"last_name\":\"Tester\",\n                                \"dob\":\"2000-01-01\",\n                                \"trip_cost\":1\n                            },\n                            {\n                                \"type\": \"dependant\",\n                                \"first_name\":\"Test Jr.\",\n                                \"last_name\":\"Tester\",\n                                \"dob\":\"2000-01-01\",\n                                \"trip_cost\":1\n                            }\n                        ],\n                        \"destinations\": [\n                            {\n                                \"country_code\": \"US\",\n                                \"country_name\": \"United States of America\"\n                            }\n                        ]\n                    }\n                ],\n                \"start_at\": \"2023-06-01\",\n                \"end_at\": \"2023-06-15\",\n                \"deposit_at\": \"2023-06-01\",\n                \"details\": [\n                    {\n                        \"id\": \"2552c069-f4bd-4bed-8ccc-cc96f21b3c68\",\n                        \"type\": \"package\",\n                        \"amount\": 125,\n                        \"product_package_alias\": \"base_package\"\n                    },\n                    {\n                        \"id\": \"2deecc8c-0a1c-410e-8778-50ba2a9ed526\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"trip_cancellation\",\n                        \"value\": \"100_percent_of_trip_cost\",\n                        \"product_package_alias\": \"base_package\"\n                    },\n                    {\n                        \"id\": \"5ff5a88c-a178-4e37-98d8-4badd8b0afd8\",\n                        \"type\": \"package\",\n                        \"amount\": 50,\n                        \"product_package_alias\": \"trip_delay_package\"\n                    },\n                    {\n                        \"id\": \"5896fa83-b806-45a5-b732-161f92517023\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"trip_delay\",\n                        \"value\": \"2500\",\n                        \"product_package_alias\": \"trip_delay_package\"\n                    },\n                    {\n                        \"id\": \"235668a1-6135-474c-a6bf-c2d9a5f6f16e\",\n                        \"type\": \"package\",\n                        \"product_package_alias\": \"flight_accident_package\"\n                    },\n                    {\n                        \"id\": \"cc50d3c6-d03e-4142-a091-52c54ab6c04e\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"flight_accident\",\n                        \"value\": \"500000\",\n                        \"product_package_alias\": \"flight_accident_package\"\n                    },\n                    {\n                        \"id\": \"07ffce18-1210-40d7-b929-030098540f3d\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"cc8333f6-7a29-4894-89ec-8afeab56740a\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 175\n                    },\n                    {\n                        \"id\": \"20507480-f569-4fb1-9631-c6c977131749\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 175\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Test\",\n                    \"middle_name\": \"Optional\",\n                    \"last_name\": \"Tester\",\n                    \"dob\": \"2000-01-01\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"Test\",\n                    \"middle_name\": \"Optional\",\n                    \"last_name\": \"Beneficiary\",\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                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Test\",\n            \"middle_name\": \"Optional\",\n            \"last_name\": \"Tester\",\n            \"dob\": \"2000-01-01\",\n            \"age_at_travel\": 23,\n            \"email\": \"applicant@example.com\",\n            \"contact_number\": \"10001112222\",\n            \"address\": \"123 Test Street\",\n            \"city\": \"Test City\",\n            \"post_code\": \"00000\",\n            \"country_code\": \"US\",\n            \"state_code\": \"OH\",\n            \"ip_address\": \"0.0.0.0\"\n        },\n        \"affiliate\": {\n            \"id\": 1,\n            \"commission_amount\": 0,\n            \"commission_percentage\": 0,\n            \"contact_email\": \"affiliate@example.com\"\n        },\n        \"details\": [],\n        \"insured\": [\n            {\n                \"type\": \"visitor\",\n                \"first_name\": \"Test\",\n                \"middle_name\": \"Optional\",\n                \"last_name\": \"Tester\",\n                \"dob\": \"2000-01-01\",\n                \"trip_cost\":1\n            },\n            {\n                \"type\": \"dependant\",\n                \"first_name\": \"Test Jr.\",\n                \"last_name\": \"Tester\",\n                \"dob\": \"2000-01-01\",\n                \"trip_cost\":1\n            }\n        ]\n    }\n}"}],"_postman_id":"583a0e79-6dde-4cef-ba1d-fae643f12f57"},{"name":"Order Status Update","event":[{"listen":"prerequest","script":{"id":"44d9502f-4006-4371-a6ba-d69f268a6754","exec":[""],"type":"text/javascript"}}],"id":"28c39400-dc2b-46d5-b316-927eee5c82ae","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_api_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"Cancelled\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order}}/generic/intake/status","description":"<p>Allows for an order to be update to the \"Cancelled\" status.</p>\n","urlObject":{"path":["api","partner","orders","{{order}}","generic","intake","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"7990fb0b-0869-43ba-9b63-5b4816196776","name":"Order Status Update","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"Cancelled\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host_gateway}}/api/partner/orders/{{order}}/generic/intake/status"},"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        \"order_number\": \"31A7JD5J01LI\",\n        \"client_id\": 1,\n        \"status\": \"Cancelled\",\n        \"premium\": 175,\n        \"total\": 175,\n        \"currency_id\": \"USD\",\n        \"status_updated_at\": \"2023-10-25T15:29:43.362000Z\",\n        \"ordered_at\": \"2023-06-01T00:00:00.000000Z\",\n        \"signed_at\": \"2023-06-01T00:00:00.000000Z\",\n        \"approved_at\": \"2023-10-25T15:29:03.533000Z\",\n        \"items\": [\n            {\n                \"id\": \"50708593-ecde-4fc1-a6a8-4a01747d09b6\",\n                \"product_id\": 1066,\n                \"program_id\": 36,\n                \"product_uuid\": \"001e018d-c862-49e9-875d-ac4ea5d64121\",\n                \"product_name\": \"My Product Name\",\n                \"product_alias\": \"my_product_alias\",\n                \"product_code\": \"my-product-code\",\n                \"product_major_id\": 68,\n                \"product_minor_id\": 1595,\n                \"policy_number\": \"476NH574A1EC-1\",\n                \"files\": [\n                    {\n                        \"type\": \"policy\",\n                        \"name\": \"Policy Document\",\n                        \"uri\": \"https://policy-files.com/476NH574A1EC-1.pdf\"\n                    }\n                ],\n                \"segments\": [],\n                \"start_at\": \"2023-06-01\",\n                \"end_at\": \"2023-06-15\",\n                \"deposit_at\": \"2023-06-01\",\n                \"details\": [\n                    {\n                        \"id\": \"c1449899-f50c-474a-8ba5-7f41450a0868\",\n                        \"type\": \"package\",\n                        \"amount\": 125,\n                        \"product_package_alias\": \"base_package\"\n                    },\n                    {\n                        \"id\": \"7c1ef37a-8215-4408-881a-d77b6c8650c8\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"trip_cancellation\",\n                        \"value\": \"100_percent_of_trip_cost\",\n                        \"product_package_alias\": \"base_package\"\n                    },\n                    {\n                        \"id\": \"e2b34944-1b76-4a9d-885b-84606050618e\",\n                        \"type\": \"package\",\n                        \"amount\": 50,\n                        \"product_package_alias\": \"trip_delay_package\"\n                    },\n                    {\n                        \"id\": \"5449a53f-be0b-43c8-ab39-4f12f91106c2\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"trip_delay\",\n                        \"value\": \"2500\",\n                        \"product_package_alias\": \"trip_delay_package\"\n                    },\n                    {\n                        \"id\": \"e5ac07f0-e86a-4a6f-a196-a740da8b4929\",\n                        \"type\": \"package\",\n                        \"product_package_alias\": \"flight_accident_package\"\n                    },\n                    {\n                        \"id\": \"566b2c10-cd11-4b3e-afee-2f744caca952\",\n                        \"type\": \"limit\",\n                        \"detail\": \"benefit_limit\",\n                        \"for\": \"flight_accident\",\n                        \"value\": \"500000\",\n                        \"product_package_alias\": \"flight_accident_package\"\n                    },\n                    {\n                        \"id\": \"1aa9384f-b880-444f-9195-b4f7b12b92bd\",\n                        \"type\": \"trip_cost\",\n                        \"amount\": 1\n                    },\n                    {\n                        \"id\": \"ab04cdfd-9636-4082-8124-b75917832de4\",\n                        \"type\": \"premium\",\n                        \"detail\": \"Policy premium\",\n                        \"amount\": 175\n                    },\n                    {\n                        \"id\": \"cf7bb88a-697e-43a1-8669-3517253ad23e\",\n                        \"type\": \"total\",\n                        \"detail\": \"Policy total\",\n                        \"amount\": 175\n                    }\n                ],\n                \"insured\": {\n                    \"first_name\": \"Test\",\n                    \"middle_name\": \"Optional\",\n                    \"last_name\": \"Tester\",\n                    \"dob\": \"2000-01-01\"\n                },\n                \"beneficiary\": {\n                    \"first_name\": \"Test\",\n                    \"middle_name\": \"Optional\",\n                    \"last_name\": \"Beneficiary\",\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                \"meta\": null\n            }\n        ],\n        \"applicant\": {\n            \"first_name\": \"Test\",\n            \"middle_name\": \"Optional\",\n            \"last_name\": \"Tester\",\n            \"dob\": \"2000-01-01\",\n            \"age_at_travel\": 23,\n            \"email\": \"applicant@example.com\",\n            \"contact_number\": \"10001112222\",\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.31.25.145\"\n        },\n        \"affiliate\": {\n            \"id\": 123,\n            \"commission_amount\": 8.75,\n            \"commission_percentage\": 5,\n            \"contact_email\": \"test@tester.com\"\n        },\n        \"details\": [],\n        \"insured\": [\n            {\n                \"type\": \"visitor\",\n                \"first_name\": \"Test\",\n                \"middle_name\": \"Optional\",\n                \"last_name\": \"Tester\",\n                \"dob\": \"2000-01-01\",\n                \"trip_cost\": 1\n            },\n            {\n                \"type\": \"dependant\",\n                \"first_name\": \"Test Jr.\",\n                \"last_name\": \"Tester\",\n                \"dob\": \"2000-01-01\",\n                \"trip_cost\": 1\n            }\n        ]\n    }\n}"}],"_postman_id":"28c39400-dc2b-46d5-b316-927eee5c82ae"}],"id":"820b7c55-9232-44a8-9ac3-5f7e5f9437e0","description":"<p>You will use our <a href=\"https://documenter.getpostman.com/view/29132000/2sAYJAdxZe#d1a4c0c5-ceee-45f2-beb7-d08f03960a6b\">Store Order Only</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":{"basicConfig":[{"key":"token","value":"{{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":"820b7c55-9232-44a8-9ac3-5f7e5f9437e0"},{"name":"Payments","item":[{"name":"Process Payment","id":"b656e943-ba5c-4ab5-ac69-35ee275a8ce6","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 when payment has been confirmed as received and will update the status from pending to approved.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"682c9497-4bdd-41c7-bc4a-1c04086be18c","id":"682c9497-4bdd-41c7-bc4a-1c04086be18c","name":"Payments","type":"folder"}},"urlObject":{"path":["api","partner","orders","{{order_number}}","payment","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"e63adf6a-6368-45ba-bac5-1b96f93e5258","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":"44dc7417-82d6-426b-94b8-1d5d70bc8401","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":"6505dc05-ce22-4e23-8782-46f7652af6af","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":"b656e943-ba5c-4ab5-ac69-35ee275a8ce6"}],"id":"682c9497-4bdd-41c7-bc4a-1c04086be18c","description":"<p>The order is originally created in the pending status. For the oder to be finalized we will need you to confirm that payment has been receied. Once confirmed on your end you will utilize our process payment endpoint, letting us know that payment has been received. The order is then updated to approved in our system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":"682c9497-4bdd-41c7-bc4a-1c04086be18c"},{"name":"Cancellations","item":[{"name":"Confirm Cancellation","id":"806a38c5-501c-4557-85c2-3f3f7c286d1c","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","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","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","partner","orders","{{order_number}}","cancellation"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"282ef1c0-36be-4d35-89e1-4696aa602d4e","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":"965243f2-5756-4d52-bcb2-c24e4223957e","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":"0965db53-cd99-4a42-add4-b40811b1d73c","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":"5f556187-fdd5-48df-84ca-2621ab5be105","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":"b1b90d5f-eee9-4509-b159-2a6add74ceb1","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":"5a7dd809-68c5-4f74-a96a-e03fac4f401d","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":"806a38c5-501c-4557-85c2-3f3f7c286d1c"}],"id":"6045b114-f424-4479-b4cb-966f59a6dfac","description":"<p>Cancellations have a number of outcomes:</p>\n<ol>\n<li>Cancellation cannot be allowed</li>\n<li>Cancellation is allowed, but without a refund</li>\n<li>Cancellation is allowed and can be partially refunded</li>\n<li>Cancellation is allowed and is fully refunded</li>\n</ol>\n<p>We have a couple of endpoints that can be used to execute cancellations:</p>\n<ol>\n<li>Cancellation Endpoint - cancellation is executed and stored. This can be called only once per order, since changes are final.</li>\n</ol>\n","_postman_id":"6045b114-f424-4479-b4cb-966f59a6dfac","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Order Updates","item":[{"name":"Partial Update Allowed Fields","id":"f6a6135a-966c-4c04-ad77-5052040b5de0","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","partner","orders","fields"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"a965d5aa-e8fe-4469-a83c-f979ebd1d1fe","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":"f6a6135a-966c-4c04-ad77-5052040b5de0"},{"name":"Partial Order Update","id":"77b7d594-8ebe-4d4e-b825-8e856eebd330","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","partner","orders","{{order_number}}"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"373ec94c-b83c-4121-bd1c-204bfb11ad85","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":"524fe007-d656-4723-b00c-b1ee5ecc41f4","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":"c60f27df-3180-485f-abc5-e3dea68ee360","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":"77b7d594-8ebe-4d4e-b825-8e856eebd330"}],"id":"c86e7203-1037-4967-a5f8-0efcbc3e1a70","_postman_id":"c86e7203-1037-4967-a5f8-0efcbc3e1a70","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Claims","item":[{"name":"Status","item":[{"name":"By Email","id":"97ab5020-afc7-4f73-a925-6655615d08ba","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"acd42eb3-4512-4ace-b4ea-5d5c528ac0d2","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":"97ab5020-afc7-4f73-a925-6655615d08ba"},{"name":"By Claim Number","id":"37abf27e-9ec3-4966-a9b8-d8542dea1500","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"e550e906-b1cb-4cce-b845-fa4f8f097ecc","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":"37abf27e-9ec3-4966-a9b8-d8542dea1500"},{"name":"By Policy Number","id":"5faac7de-fb7f-4ebe-86b9-653e8d499dd6","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","status"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"a69109f9-a94d-499d-8332-5640777320da","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":"5faac7de-fb7f-4ebe-86b9-653e8d499dd6"}],"id":"54386967-7ee8-4f71-8202-eeb3f69cb0c5","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":"54386967-7ee8-4f71-8202-eeb3f69cb0c5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Additional Documents","item":[{"name":"By Client Id","id":"60f4eb39-505d-4ee8-9ff2-714ea2a3cfb2","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","additional-docs"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"62d0acbf-b79a-412f-a329-0bc859646a57","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":"60f4eb39-505d-4ee8-9ff2-714ea2a3cfb2"}],"id":"00bc09fd-eef8-4a42-b7f1-42f81d6a3674","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":"00bc09fd-eef8-4a42-b7f1-42f81d6a3674","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Options","item":[{"name":"Countries","id":"33f485d5-475b-4a14-9653-c097a1f40f15","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","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":"86fe28c4-ee9e-4f4a-80c8-3642c8ed072e","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":"33f485d5-475b-4a14-9653-c097a1f40f15"},{"name":"States","id":"96b8d024-59b4-494f-8b5a-8f5fe8715688","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","countries","{{country_code}}","states"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"a04d9738-4add-43df-a6ea-3f348d46dbbd","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":"96b8d024-59b4-494f-8b5a-8f5fe8715688"},{"name":"Policy Benefits","id":"ef7fa9c2-aaaa-4324-9d60-e8805124bc5c","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim_fnol","policy","{policy_id}","benefits"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"c880fbb7-2a94-4df8-9e28-ea4bf2623942","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":"ef7fa9c2-aaaa-4324-9d60-e8805124bc5c"},{"name":"Cover Causes","id":"bd28dead-edad-4d3f-b925-ea384d27404d","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","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":"b12ca971-3121-464c-9df5-eaa29a59bae5","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":"bd28dead-edad-4d3f-b925-ea384d27404d"}],"id":"58d24e43-17b9-43d5-90f2-586495145d8d","_postman_id":"58d24e43-17b9-43d5-90f2-586495145d8d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","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":"1bc08969-5109-4e6f-9199-e6e76a386024","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<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":"c0dcf0a8-0272-40f9-a18b-bd6d47ebadc5","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":"1bc08969-5109-4e6f-9199-e6e76a386024"},{"name":"Questions","id":"48231ea2-3c63-44e4-9c17-81e5e7b82a7a","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","questions"],"host":["{{host_gateway}}"],"query":[{"key":"policy_number","value":"17-OC20912-86198"}],"variable":[]}},"response":[{"id":"321d9494-c8bd-4631-8a80-1f18ca2b61af","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":"48231ea2-3c63-44e4-9c17-81e5e7b82a7a"},{"name":"File Upload","id":"c32ef236-2f81-44a1-90aa-02817e3e9234","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","upload"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"a3fc2558-2ee4-4ea8-9fb4-81719cbaaf76","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":"c32ef236-2f81-44a1-90aa-02817e3e9234"},{"name":"Create Claim","id":"8b4da2bb-18aa-4a4d-a409-759739044f0a","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":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"path":["api","v1","claim-fnol","claim"],"host":["{{host_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"e88c9b68-0d1a-478d-bdf9-144f51135bfa","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":"8b4da2bb-18aa-4a4d-a409-759739044f0a"}],"id":"3236252a-afa4-477b-86be-3ad4de47b2d1","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":"3236252a-afa4-477b-86be-3ad4de47b2d1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Webhooks","item":[{"name":"Webhook signatures (HMAC)","item":[{"name":"How to verify (reference)","id":"f0ed486e-497d-447b-8348-e0d3b7dedd8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://example.com/docs/webhook-signatures","description":"<p>Receiver verification example (PHP):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">$timestamp = $_SERVER['HTTP_X_WEBHOOK_TIMESTAMP'] ?? null;\n$signatureHeader = $_SERVER['HTTP_X_WEBHOOK_SIGNATURE'] ?? null;\n$rawBody = file_get_contents('php://input');\n$sharedSecret = 'replace-with-subscription-secret';\n\nif ($timestamp === null || $signatureHeader === null) {\n  http_response_code(400);\n  exit('Missing signature headers');\n}\n\n[$algorithm, $providedHash] = array_pad(explode('=', $signatureHeader, 2), 2, null);\n$expectedHash = hash_hmac($algorithm, \"{$timestamp}.{$rawBody}\", $sharedSecret);\nif (!hash_equals($expectedHash, $providedHash)) {\n  http_response_code(401);\n  exit('Invalid signature');\n}\n\n// replay window example (5 minutes)\nif (abs(time() - (int)$timestamp) &gt; 300) {\n  http_response_code(401);\n  exit('Stale timestamp');\n}\n\nhttp_response_code(204);\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"protocol":"https","path":["docs","webhook-signatures"],"host":["example","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0ed486e-497d-447b-8348-e0d3b7dedd8b"},{"name":"Generate signature for a payload (example)","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["// Generates X-Webhook-Signature for the current request body using collection variables.","// Requires CryptoJS (available in Postman sandbox).","const algo = (pm.collectionVariables.get('signature_algorithm') || 'sha256').toLowerCase();","const secret = pm.collectionVariables.get('webhook_secret') || '';","const ts = pm.collectionVariables.get('webhook_timestamp') || Math.floor(Date.now()/1000).toString();","pm.collectionVariables.set('webhook_timestamp', ts);","const rawBody = pm.request.body && pm.request.body.raw ? pm.request.body.raw : '';","const signingInput = `${ts}.${rawBody}`;","let hashHex = '';","if (algo === 'sha256') {","  hashHex = CryptoJS.HmacSHA256(signingInput, secret).toString(CryptoJS.enc.Hex);","} else {","  throw new Error(`Unsupported algorithm: ${algo}`);","}","pm.collectionVariables.set('webhook_signature', `${algo}=${hashHex}`);"],"id":"7b4da2f4-80ec-4085-a14c-98f196b00ef4"}},{"listen":"test","script":{"type":"text/javascript","exec":["pm.test('Signature computed and stored', function () {","  const sig = pm.collectionVariables.get('webhook_signature');","  pm.expect(sig).to.include('=');","});","console.log('X-Webhook-Timestamp:', pm.collectionVariables.get('webhook_timestamp'));","console.log('X-Webhook-Signature:', pm.collectionVariables.get('webhook_signature'));"],"id":"f429fad5-af43-442c-9871-a573f1ebadee"}}],"id":"7685166c-a2fa-42c4-b895-2d85e31ab4cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Timestamp","value":"{{webhook_timestamp}}"},{"key":"X-Webhook-Signature","value":"{{webhook_signature}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"example.signed\",\n    \"occurred_at\": \"2026-01-01T00:00:00Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"case\",\n        \"id\": \"10001\"\n    },\n    \"links\": {},\n    \"data\": {\n        \"ping\": \"pong\"\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Demonstrates generating a signature in Postman for a payload.</p>\n<p>Signing input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>{{signature_algorithm}}=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7685166c-a2fa-42c4-b895-2d85e31ab4cf"}],"id":"3cbcf5f6-f52f-4036-ba7c-dc4ae566fee1","description":"<p>Webhook deliveries can be optionally signed with an HMAC so receivers can verify authenticity and prevent replay.</p>\n<p>Headers (defaults):</p>\n<ul>\n<li><p><code>X-Webhook-Timestamp:</code></p>\n</li>\n<li><p><code>X-Webhook-Signature: =</code></p>\n</li>\n</ul>\n<p>Signing input:</p>\n<ul>\n<li><code>\".\"</code></li>\n</ul>\n<p>HMAC key:</p>\n<ul>\n<li>Subscription <code>secret</code></li>\n</ul>\n<p>Receiver verification steps:</p>\n<ol>\n<li>Read <code>X-Webhook-Timestamp</code> and <code>X-Webhook-Signature</code>.  </li>\n<li>Recompute HMAC over <code>\"{timestamp}.{rawBody}\"</code> using the shared secret.  </li>\n<li>Compare using constant-time comparison.  </li>\n<li>Enforce a replay window (example: 5 minutes).</li>\n</ol>\n<p>Configurable header names:</p>\n<ul>\n<li><p><code>WEBHOOK_DELIVERY_SIGNATURE_TIMESTAMP_HEADER_NAME</code> (default <code>X-Webhook-Timestamp</code>)</p>\n</li>\n<li><p><code>WEBHOOK_DELIVERY_SIGNATURE_HEADER_NAME</code> (default <code>X-Webhook-Signature</code>)</p>\n</li>\n</ul>\n","_postman_id":"3cbcf5f6-f52f-4036-ba7c-dc4ae566fee1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Assistance Case Events","item":[{"name":"assistance.case.created","id":"298ae705-3a0f-43d3-b119-8c2ee0d14e1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"assistance.case.created"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"assistance.case.created\",\n    \"occurred_at\": \"2026-01-15T10:00:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"case\",\n        \"id\": \"10001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"case\": {\n            \"id\": 10001,\n            \"number\": \"90001\",\n            \"case_status\": \"OPEN\",\n            \"assistance_status\": \"OPEN\",\n            \"case_phase\": \"Claims - Inquiry\",\n            \"assistance_phase\": null,\n            \"policy_external_reference\": \"POLICY-123456\",\n            \"policy_number\": \"POLICY-123456\",\n            \"incident\": {\n                \"date\": \"2026-01-15\",\n                \"notification_date\": \"2026-01-15\",\n                \"coverage\": \"missed_connection\",\n                \"cause\": \"Civil disorder\",\n                \"country\": \"US\",\n                \"state\": \"NY\",\n                \"type\": \"Travel Delay - Missed Connection\"\n            },\n            \"currency\": \"USD\",\n            \"reserves\": {\n                \"total\": 0,\n                \"currency\": \"USD\",\n                \"allocations\": []\n            },\n            \"payments\": [],\n            \"invoices\": [],\n            \"communications\": [\n                {\n                    \"id\": 50001,\n                    \"files\": [\n                        \"file_20001\"\n                    ]\n                }\n            ],\n            \"tasks\": [],\n            \"timestamps\": {\n                \"created_at\": \"2026-01-15T10:00:00.000000+00:00\",\n                \"updated_at\": \"2026-01-15T10:00:00.100000+00:00\"\n            }\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.  </li>\n<li>Send the request.  </li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><p><code>type</code> (string): event type</p>\n</li>\n<li><p><code>occurred_at</code> (ISO-8601): when the event happened</p>\n</li>\n<li><p><code>version</code> (int): contract major version</p>\n</li>\n<li><p><code>revision</code> (int): contract revision</p>\n</li>\n<li><p><code>reference</code> (object): primary object reference for routing</p>\n</li>\n<li><p><code>links</code> (object): helpful URLs (optional)</p>\n</li>\n<li><p><code>data</code> (object): event payload</p>\n</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><p><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></p>\n</li>\n<li><p><code>X-Webhook-Signature: {{webhook_signature}}</code></p>\n</li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.<br />Signing input: <code>\".\"</code><br />Header format: <code>X-Webhook-Signature: =</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"298ae705-3a0f-43d3-b119-8c2ee0d14e1a"},{"name":"assistance.case.updated","id":"4c0e4d16-cf59-4acf-bf65-02714a8ef512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"assistance.case.updated"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"assistance.case.updated\",\n    \"occurred_at\": \"2026-01-16T12:34:57Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"case\",\n        \"id\": \"10001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"case\": {\n            \"id\": 10001,\n            \"number\": \"90001\",\n            \"case_status\": \"OPEN\",\n            \"assistance_status\": \"CLOSED\",\n            \"case_phase\": \"Claims - Inquiry\",\n            \"assistance_phase\": null,\n            \"policy_external_reference\": \"POLICY-123456\",\n            \"policy_number\": \"POLICY-123456\",\n            \"incident\": {\n                \"date\": \"2026-01-15\",\n                \"notification_date\": \"2026-03-05\",\n                \"coverage\": \"missed_connection\",\n                \"cause\": \"Civil disorder\",\n                \"country\": \"US\",\n                \"state\": \"NY\",\n                \"type\": \"Travel Delay - Missed Connection\"\n            },\n            \"currency\": \"USD\",\n            \"reserves\": {\n                \"total\": 1458.23,\n                \"currency\": \"USD\",\n                \"allocations\": [\n                    {\n                        \"benefit_code\": \"TRAVEL_DELAY_-_MISSED_CONNECTION\",\n                        \"benefit_label\": \"Travel Delay - Missed Connection\",\n                        \"amount\": 0\n                    }\n                ]\n            },\n            \"payments\": [],\n            \"invoices\": [],\n            \"communications\": [\n                {\n                    \"id\": 50001,\n                    \"files\": []\n                },\n                {\n                    \"id\": 50002,\n                    \"files\": [\n                        \"file_20001\"\n                    ]\n                }\n            ],\n            \"tasks\": [\n                20001,\n                20002\n            ],\n            \"timestamps\": {\n                \"created_at\": \"2026-01-15T10:00:00.000000+00:00\",\n                \"updated_at\": \"2026-01-16T12:34:56.000000+00:00\"\n            }\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.  </li>\n<li>Send the request.  </li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><p><code>type</code> (string): event type</p>\n</li>\n<li><p><code>occurred_at</code> (ISO-8601): when the event happened</p>\n</li>\n<li><p><code>version</code> (int): contract major version</p>\n</li>\n<li><p><code>revision</code> (int): contract revision</p>\n</li>\n<li><p><code>reference</code> (object): primary object reference for routing</p>\n</li>\n<li><p><code>links</code> (object): helpful URLs (optional)</p>\n</li>\n<li><p><code>data</code> (object): event payload</p>\n</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><p><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></p>\n</li>\n<li><p><code>X-Webhook-Signature: {{webhook_signature}}</code></p>\n</li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.<br />Signing input: <code>\".\"</code><br />Header format: <code>X-Webhook-Signature: =</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c0e4d16-cf59-4acf-bf65-02714a8ef512"}],"id":"cb9489ce-8e90-47bc-b109-d9393de5c09d","description":"<p>Webhook events related to assistance cases.</p>\n<p>Payload location: <code>data.case</code>.\nThe <code>case</code> object includes <code>payments</code> and <code>timestamps</code> (and may include <code>invoices</code>, <code>communications</code>, <code>tasks</code>).</p>\n<p>Files:</p>\n<ul>\n<li><code>case.communications[].files[]</code> contains file IDs only.</li>\n<li>Use <strong>File retrieval (attachments)</strong> to resolve file IDs to metadata + a one-time download URL.</li>\n</ul>\n","_postman_id":"cb9489ce-8e90-47bc-b109-d9393de5c09d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Claim Case Events","item":[{"name":"claim.case.created","id":"9edfdf8d-20d7-4726-9eea-9c8ea183cd63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"assistance.case.created"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"claim.case.created\",\n    \"occurred_at\": \"2026-01-15T10:00:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"case\",\n        \"id\": \"10001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"case\": {\n            \"id\": 10001,\n            \"number\": \"90001\",\n            \"case_status\": \"OPEN\",\n            \"assistance_status\": \"OPEN\",\n            \"case_phase\": \"Claims - Inquiry\",\n            \"assistance_phase\": null,\n            \"policy_external_reference\": \"POLICY-123456\",\n            \"policy_number\": \"POLICY-123456\",\n            \"incident\": {\n                \"date\": \"2026-01-15\",\n                \"notification_date\": \"2026-01-15\",\n                \"coverage\": \"missed_connection\",\n                \"cause\": \"Civil disorder\",\n                \"country\": \"US\",\n                \"state\": \"NY\",\n                \"type\": \"Travel Delay - Missed Connection\"\n            },\n            \"currency\": \"USD\",\n            \"reserves\": {\n                \"total\": 0,\n                \"currency\": \"USD\",\n                \"allocations\": []\n            },\n            \"payments\": [],\n            \"invoices\": [],\n            \"communications\": [\n                {\n                    \"id\": 50001,\n                    \"files\": [\n                        \"file_20001\"\n                    ]\n                }\n            ],\n            \"tasks\": [],\n            \"timestamps\": {\n                \"created_at\": \"2026-01-15T10:00:00.000000+00:00\",\n                \"updated_at\": \"2026-01-15T10:00:00.100000+00:00\"\n            }\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.  </li>\n<li>Send the request.  </li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><p><code>type</code> (string): event type</p>\n</li>\n<li><p><code>occurred_at</code> (ISO-8601): when the event happened</p>\n</li>\n<li><p><code>version</code> (int): contract major version</p>\n</li>\n<li><p><code>revision</code> (int): contract revision</p>\n</li>\n<li><p><code>reference</code> (object): primary object reference for routing</p>\n</li>\n<li><p><code>links</code> (object): helpful URLs (optional)</p>\n</li>\n<li><p><code>data</code> (object): event payload</p>\n</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><p><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></p>\n</li>\n<li><p><code>X-Webhook-Signature: {{webhook_signature}}</code></p>\n</li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.<br />Signing input: <code>\".\"</code><br />Header format: <code>X-Webhook-Signature: =</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9edfdf8d-20d7-4726-9eea-9c8ea183cd63"},{"name":"claim.case.updated","id":"cd33990a-9c16-4899-acc3-d0ef2c14a529","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"assistance.case.updated"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"claim.case.updated\",\n    \"occurred_at\": \"2026-01-16T12:34:57Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"case\",\n        \"id\": \"10001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"case\": {\n            \"id\": 10001,\n            \"number\": \"90001\",\n            \"case_status\": \"OPEN\",\n            \"assistance_status\": \"CLOSED\",\n            \"case_phase\": \"Claims - Inquiry\",\n            \"assistance_phase\": null,\n            \"policy_external_reference\": \"POLICY-123456\",\n            \"policy_number\": \"POLICY-123456\",\n            \"incident\": {\n                \"date\": \"2026-01-15\",\n                \"notification_date\": \"2026-03-05\",\n                \"coverage\": \"missed_connection\",\n                \"cause\": \"Civil disorder\",\n                \"country\": \"US\",\n                \"state\": \"NY\",\n                \"type\": \"Travel Delay - Missed Connection\"\n            },\n            \"currency\": \"USD\",\n            \"reserves\": {\n                \"total\": 1458.23,\n                \"currency\": \"USD\",\n                \"allocations\": [\n                    {\n                        \"benefit_code\": \"TRAVEL_DELAY_-_MISSED_CONNECTION\",\n                        \"benefit_label\": \"Travel Delay - Missed Connection\",\n                        \"amount\": 0\n                    }\n                ]\n            },\n            \"payments\": [],\n            \"invoices\": [],\n            \"communications\": [\n                {\n                    \"id\": 50001,\n                    \"files\": []\n                },\n                {\n                    \"id\": 50002,\n                    \"files\": [\n                        \"file_20001\"\n                    ]\n                }\n            ],\n            \"tasks\": [\n                20001,\n                20002\n            ],\n            \"timestamps\": {\n                \"created_at\": \"2026-01-15T10:00:00.000000+00:00\",\n                \"updated_at\": \"2026-01-16T12:34:56.000000+00:00\"\n            }\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.  </li>\n<li>Send the request.  </li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><p><code>type</code> (string): event type</p>\n</li>\n<li><p><code>occurred_at</code> (ISO-8601): when the event happened</p>\n</li>\n<li><p><code>version</code> (int): contract major version</p>\n</li>\n<li><p><code>revision</code> (int): contract revision</p>\n</li>\n<li><p><code>reference</code> (object): primary object reference for routing</p>\n</li>\n<li><p><code>links</code> (object): helpful URLs (optional)</p>\n</li>\n<li><p><code>data</code> (object): event payload</p>\n</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><p><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></p>\n</li>\n<li><p><code>X-Webhook-Signature: {{webhook_signature}}</code></p>\n</li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.<br />Signing input: <code>\".\"</code><br />Header format: <code>X-Webhook-Signature: =</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd33990a-9c16-4899-acc3-d0ef2c14a529"}],"id":"9c3380be-7da4-4770-9bf2-c24f074f8a95","description":"<p>Webhook events related to claim cases.</p>\n<p>Payload location: <code>data.case</code>.<br />The <code>case</code> object includes <code>payments</code> and <code>timestamps</code> (and may include <code>invoices</code>, <code>communications</code>, <code>tasks</code>).</p>\n<p>Files:</p>\n<ul>\n<li><p><code>case.communications[].files[]</code> contains file IDs only.</p>\n</li>\n<li><p>Use <strong>File retrieval (attachments)</strong> to resolve file IDs to metadata + a one-time download URL.</p>\n</li>\n</ul>\n","_postman_id":"9c3380be-7da4-4770-9bf2-c24f074f8a95","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Task Events","item":[{"name":"assistance.case.task.created","id":"5e83f0da-4b6f-48a5-b11d-04faa3ab3bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"assistance.case.task.created"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"assistance.case.task.created\",\n    \"occurred_at\": \"2026-01-16T12:00:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"task\",\n        \"id\": \"20001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"task\": {\n            \"id\": 20001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"type\": null,\n            \"status\": \"open\",\n            \"title\": \"Communication Received\",\n            \"description\": \"\",\n            \"priority\": null,\n            \"due_at\": \"2026-01-16T12:30:00.000Z\",\n            \"timestamps\": {\n                \"created_at\": \"2026-01-16T12:00:00.000Z\",\n                \"updated_at\": \"2026-01-16T12:00:00.010Z\"\n            }\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e83f0da-4b6f-48a5-b11d-04faa3ab3bb8"},{"name":"assistance.case.task.closed","id":"9a2b136a-81db-4158-bf0d-c77349209fd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"assistance.case.task.closed"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"assistance.case.task.closed\",\n    \"occurred_at\": \"2026-01-16T13:00:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"task\",\n        \"id\": \"20001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"task\": {\n            \"id\": 20001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"type\": null,\n            \"status\": \"closed\",\n            \"title\": \"Communication Received\",\n            \"description\": \"\",\n            \"priority\": null,\n            \"due_at\": \"2026-01-16T12:30:00.000Z\",\n            \"timestamps\": {\n                \"closed_at\": \"2026-01-16T13:00:00.000Z\"\n            }\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a2b136a-81db-4158-bf0d-c77349209fd0"}],"id":"bea2226e-71b7-47d2-9b7b-c4d9e8812512","description":"<p>Task lifecycle webhook events.</p>\n<p>Payload location: <code>data.task</code>.\nTasks include case identifiers (<code>case_id</code>, <code>case_number</code>) for correlation.</p>\n","_postman_id":"bea2226e-71b7-47d2-9b7b-c4d9e8812512","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Payment Events","item":[{"name":"case.payment.created","id":"cad84f9e-3e70-4b16-95c7-5d9ee354c0e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"case.payment.created"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"case.payment.created\",\n    \"occurred_at\": \"2026-01-16T12:10:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"payment\",\n        \"id\": \"40001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"payment\": {\n            \"id\": 40001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"amount\": 701.69,\n            \"currency\": \"USD\",\n            \"status\": \"PENDING\",\n            \"created_at\": \"2026-01-16T12:10:00.000Z\",\n            \"paid_at\": null\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cad84f9e-3e70-4b16-95c7-5d9ee354c0e7"},{"name":"case.payment.status_changed","id":"3167f71b-b17b-4f59-a5a6-0e57551efc21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"case.payment.status_changed"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"case.payment.status_changed\",\n    \"occurred_at\": \"2026-01-16T12:15:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"payment\",\n        \"id\": \"40001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"payment\": {\n            \"id\": 40001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"amount\": 701.69,\n            \"currency\": \"USD\",\n            \"status\": \"TRANSFERRED\",\n            \"created_at\": \"2026-01-16T12:10:00.000Z\",\n            \"paid_at\": \"2026-01-16\"\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3167f71b-b17b-4f59-a5a6-0e57551efc21"}],"id":"495fb626-3fe4-4515-a601-df00b2c76531","description":"<p>Payment webhook events.</p>\n<p>Payload location: <code>data.payment</code>.\n<code>case.payment.status_changed</code> communicates status transitions (e.g., PENDING -&gt; TRANSFERRED).</p>\n","_postman_id":"495fb626-3fe4-4515-a601-df00b2c76531","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Invoice Events","item":[{"name":"case.invoice.created","id":"0bf8d178-c02e-486d-b3bb-b64e70a3e616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"case.invoice.created"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"case.invoice.created\",\n    \"occurred_at\": \"2026-01-16T12:20:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"invoice\",\n        \"id\": \"30001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"invoice\": {\n            \"id\": 30001,\n            \"case_id\": 10001,\n            \"case_number\": 90001,\n            \"status\": \"ISSUED\",\n            \"currency\": \"USD\",\n            \"issued_at\": \"2026-01-16\",\n            \"total_amount\": 751.69,\n            \"payout\": {\n                \"id\": 40001,\n                \"status\": \"PENDING\"\n            },\n            \"entries\": [\n                {\n                    \"id\": 31001,\n                    \"description\": \"Medical Expenses\",\n                    \"provider\": {\n                        \"name\": \"Provider Name\"\n                    },\n                    \"amount\": 751.69,\n                    \"account\": {\n                        \"id\": 32001,\n                        \"name\": \"Account Name\"\n                    }\n                }\n            ]\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0bf8d178-c02e-486d-b3bb-b64e70a3e616"},{"name":"case.invoice.updated","id":"a2a3e9c3-e2a4-44ea-8c72-f155cbc254f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"case.invoice.updated"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"case.invoice.updated\",\n    \"occurred_at\": \"2026-01-16T12:25:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"invoice\",\n        \"id\": \"30001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"invoice\": {\n            \"id\": 30001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"status\": \"SETTLED\",\n            \"currency\": \"USD\",\n            \"issued_at\": \"2026-01-16\",\n            \"total_amount\": 751.69,\n            \"payout\": {\n                \"id\": 40001,\n                \"status\": \"TRANSFERRED\"\n            },\n            \"entries\": [\n                {\n                    \"id\": 31001,\n                    \"description\": \"Medical Expenses\",\n                    \"provider\": {\n                        \"name\": \"Provider Name\"\n                    },\n                    \"amount\": 751.69,\n                    \"account\": {\n                        \"id\": 32001,\n                        \"name\": \"Account Name\"\n                    }\n                }\n            ]\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.  </li>\n<li>Send the request.  </li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><p><code>type</code> (string): event type</p>\n</li>\n<li><p><code>occurred_at</code> (ISO-8601): when the event happened</p>\n</li>\n<li><p><code>version</code> (int): contract major version</p>\n</li>\n<li><p><code>revision</code> (int): contract revision</p>\n</li>\n<li><p><code>reference</code> (object): primary object reference for routing</p>\n</li>\n<li><p><code>links</code> (object): helpful URLs (optional)</p>\n</li>\n<li><p><code>data</code> (object): event payload</p>\n</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><p><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></p>\n</li>\n<li><p><code>X-Webhook-Signature: {{webhook_signature}}</code></p>\n</li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.<br />Signing input: <code>\".\"</code><br />Header format: <code>X-Webhook-Signature: =</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2a3e9c3-e2a4-44ea-8c72-f155cbc254f2"},{"name":"case.invoice.status_changed","id":"89bd4828-5f52-4a31-9cd7-f37176062bfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"case.invoice.status_changed"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"case.invoice.status_changed\",\n    \"occurred_at\": \"2026-01-16T12:30:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"invoice\",\n        \"id\": \"30001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"invoice\": {\n            \"id\": 30001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"status\": \"SETTLED\",\n            \"currency\": \"USD\",\n            \"issued_at\": \"2026-01-16\",\n            \"total_amount\": 751.69,\n            \"payout\": {\n                \"id\": 40001,\n                \"status\": \"TRANSFERRED\"\n            },\n            \"entries\": [\n                {\n                    \"id\": 31001,\n                    \"description\": \"Medical Expenses\",\n                    \"provider\": {\n                        \"name\": \"Provider Name\"\n                    },\n                    \"amount\": 751.69,\n                    \"account\": {\n                        \"id\": 32001,\n                        \"name\": \"Account Name\"\n                    }\n                }\n            ]\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89bd4828-5f52-4a31-9cd7-f37176062bfb"}],"id":"9a8e9c55-1bbe-4f3f-a439-d711da3e193e","description":"<p>Invoice webhook events.</p>\n<p>Payload location: <code>data.invoice</code>.\nEvents: created, updated, status_changed.</p>\n","_postman_id":"9a8e9c55-1bbe-4f3f-a439-d711da3e193e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}},{"name":"Payment Events","item":[{"name":"case.payment.created","id":"0acfd711-c17c-4be7-9f90-4c9eca689257","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"case.payment.created"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"case.payment.created\",\n    \"occurred_at\": \"2026-01-16T12:10:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"payment\",\n        \"id\": \"40001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"payment\": {\n            \"id\": 40001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"amount\": 701.69,\n            \"currency\": \"USD\",\n            \"status\": \"PENDING\",\n            \"created_at\": \"2026-01-16T12:10:00.000Z\",\n            \"paid_at\": null\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0acfd711-c17c-4be7-9f90-4c9eca689257"},{"name":"case.payment.status_changed","id":"4152a135-3552-483e-a050-50df7b394993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Webhook-Event-Type","value":"case.payment.status_changed"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"case.payment.status_changed\",\n    \"occurred_at\": \"2026-01-16T12:15:01Z\",\n    \"version\": 1,\n    \"revision\": 1,\n    \"reference\": {\n        \"type\": \"payment\",\n        \"id\": \"40001\"\n    },\n    \"links\": {\n        \"case\": \"https://example.com/case/10001\"\n    },\n    \"data\": {\n        \"payment\": {\n            \"id\": 40001,\n            \"case_id\": 10001,\n            \"case_number\": \"90001\",\n            \"amount\": 701.69,\n            \"currency\": \"USD\",\n            \"status\": \"TRANSFERRED\",\n            \"created_at\": \"2026-01-16T12:10:00.000Z\",\n            \"paid_at\": \"2026-01-16\"\n        }\n    }\n}"},"url":"{{webhook_url}}","description":"<p>Sends a sample webhook event payload to a partner endpoint.</p>\n<p><strong>How to use:</strong></p>\n<ol>\n<li>Set <code>webhook_url</code> to your listener endpoint.</li>\n<li>Send the request.</li>\n<li>Verify JSON parsing and (optionally) signature verification.</li>\n</ol>\n<p><strong>Envelope fields:</strong></p>\n<ul>\n<li><code>type</code> (string): event type</li>\n<li><code>occurred_at</code> (ISO-8601): when the event happened</li>\n<li><code>version</code> (int): contract major version</li>\n<li><code>revision</code> (int): contract revision</li>\n<li><code>reference</code> (object): primary object reference for routing</li>\n<li><code>links</code> (object): helpful URLs (optional)</li>\n<li><code>data</code> (object): event payload</li>\n</ul>\n<p><strong>Signature headers (optional):</strong></p>\n<ul>\n<li><code>X-Webhook-Timestamp: {{webhook_timestamp}}</code></li>\n<li><code>X-Webhook-Signature: {{webhook_signature}}</code></li>\n</ul>\n<p>When webhook-ms signing is enabled (<code>WEBHOOK_DELIVERY_SIGNING_ENABLED=true</code>), webhook-ms adds these headers automatically.\nSigning input: <code>\"&lt;timestamp&gt;.&lt;raw_request_body&gt;\"</code>\nHeader format: <code>X-Webhook-Signature: &lt;algorithm&gt;=&lt;hex_hmac&gt;</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}},"urlObject":{"host":["{{webhook_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4152a135-3552-483e-a050-50df7b394993"}],"id":"d76d7b9b-ba42-4f4b-816d-555edaa5669f","description":"<p>Payment webhook events.</p>\n<p>Payload location: <code>data.payment</code>.\n<code>case.payment.status_changed</code> communicates status transitions (e.g., PENDING -&gt; TRANSFERRED).</p>\n","_postman_id":"d76d7b9b-ba42-4f4b-816d-555edaa5669f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}}],"id":"ea03c0fd-8719-45d8-88ac-936d1172f4e5","_postman_id":"ea03c0fd-8719-45d8-88ac-936d1172f4e5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}}],"id":"09c618e4-aae3-4f48-9311-5863d588473c","_postman_id":"09c618e4-aae3-4f48-9311-5863d588473c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api_token}}"}]},"isInherited":true,"source":{"_postman_id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","id":"9b471f8a-2e17-4bba-ae0b-628467537ae5","name":"Robin Assist","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{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":""}]}