{"info":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","description":"<html><head></head><body><h3 id=\"complete-set-of-requests-that-can-be-performed-using-the-rest-api\">Complete set of requests that can be performed using the REST API.</h3>\n<h4 id=\"preconditions\">Preconditions:</h4>\n<ul>\n<li><p>accessToken to authorize with tryadvocate system</p>\n</li>\n<li><p>Endpoint address: <a href=\"https://api-v2.tryadvocate.com\">https://api-v2.tryadvocate.com</a></p>\n</li>\n</ul>\n<h4 id=\"injecting-documents-flow\">Injecting Documents flow</h4>\n<ul>\n<li><p>run endpoint with exact name and type of file that you want to inject <code>/rest/documents/sign-urls</code> as a response you'll get directUploadKey and signedUrl</p>\n</li>\n<li><p>run aws put, as a url use signedUrl, this curl should point to your file in section -- data-binary</p>\n</li>\n<li><p>run <code>/rest/documents</code> and use directUploadKey in the request body, this request also needs to contain file name and type matching to preivous requests. You can add document during case creation process and for exsiting cases</p>\n</li>\n</ul>\n<h4 id=\"case-types\">Case types</h4>\n<ul>\n<li><p>New</p>\n</li>\n<li><p>Renewal</p>\n<ul>\n<li><p>Future Renewal - <code>future</code> value for <code>complianceReview</code> field</p>\n</li>\n<li><p>Audit Now - <code>now</code> value for <code>complianceReview</code> field</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"insureds\">Insureds</h4>\n<p>Before continuing with the case creation any type you need to create Insured entity (Unless its was already added)</p>\n<p><code>POST rest/insureds/</code></p>\n<h4 id=\"insurance-contacts\">Insurance Contacts</h4>\n<p>Before continuing with the case creation any type you need to create Insurance Contact entity (Unless its was already added)</p>\n<p><code>POST rest/insurance-contacts/</code></p>\n<h4 id=\"documents\">Documents</h4>\n<p>Are not required on case creation flow level. It can be added later on existing cases.</p>\n<h4 id=\"case-management-system\">Case Management System</h4>\n<ul>\n<li><p><code>advocateManaged</code> - tasks route to Advocate's internal reviewers</p>\n</li>\n<li><p><code>selfManaged</code> - tasks route to the lender's own user (Account Owner)</p>\n</li>\n</ul>\n<p>Cases can be assigned a management type, advocateManaged or selfManaged via the <code>managementType</code> field on case creation (POST) or by updating an existing case (PATCH),<br>controlling whether tasks route to Advocate's reviewers or the lender's own team. When omitted, defaults to advocateManaged.</p>\n<h4 id=\"case-statuses\">Case Statuses</h4>\n<ul>\n<li><p><code>draft</code> - Any type of case</p>\n</li>\n<li><p><code>open</code> - Any type of case, except Future Renewal</p>\n</li>\n<li><p><code>onboarding</code> - Future renewal cases</p>\n</li>\n<li><p><code>deactivated</code> - Any type of case</p>\n</li>\n<li><p><code>approved</code> - Any Type of case</p>\n</li>\n</ul>\n<h4 id=\"policy-statuses\">Policy Statuses</h4>\n<ul>\n<li><p><code>Open</code> - Any policy</p>\n</li>\n<li><p><code>Onboarding</code> - Only policies under Future Renewal cases can have this status</p>\n</li>\n<li><p><code>Deactivated</code> - Any type of policy can be deactivated</p>\n</li>\n<li><p><code>Approved</code> - possible only for Open policies</p>\n</li>\n</ul>\n<p><em>Examples of this flow you will find in this collection</em></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29884806","collectionId":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","publishedId":"2sB2xCiUy4","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-06-03T11:03:12.000Z"},"item":[{"name":"New Case Creation Flow - No Document","item":[{"name":"Insureds Corporate Type With Group","event":[{"listen":"test","script":{"id":"b663c7e7-71f6-49a2-98be-2f558d3b946d","exec":["","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"d02deb9b-5a82-4023-a45d-e11f6c64f3ce","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBorrowerId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"264a5923-145b-4fb3-809f-56b92a2ee5c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"displayName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"category\": \"606b53fa6c1ef7e79a951b50\",\n        \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n        \"pathName\": \"CorporateName RestAPI\",\n        \"createdAt\": \"2024-05-28T05:56:15.666Z\",\n        \"updatedAt\": \"2024-05-29T14:02:57.170Z\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insureds","description":"<h2 id=\"add-borrower\">Add Borrower</h2>\n<p>This endpoint allows you to add a new borrower to the system. The borrower can be of type \"corporate\", and the request requires specific details to be provided in the payload.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>type</strong> (string): Indicates the type of borrower. For this request, it should be set to \"corporate\".</p>\n</li>\n<li><p><strong>firstName</strong> (string, optional): The first name of the borrower. This can be null for corporate insured.</p>\n</li>\n<li><p><strong>lastName</strong> (string, optional): The last name of the borrower. This can also be null for corporate insured.</p>\n</li>\n<li><p><strong>corporateName</strong> (string): The name of the corporate borrower. This is a required field.</p>\n</li>\n<li><p><strong>insuredGroup</strong> (string): The ID of the borrower group associated with this borrower. This is a required field.</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a response containing the details of the newly created borrower, including all the parameters provided in the request along with any server-generated fields.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the required fields are populated correctly to avoid validation errors.</p>\n</li>\n<li><p>The timestamps for <code>createdAt</code> and <code>updatedAt</code> are usually handled by the server and may not need to be included in the request.</p>\n</li>\n<li><p>This endpoint is designed for corporate insured only; individual insured should use a different endpoint.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insureds"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"2437b9a5-2382-487c-b553-b0f00caeeb94","name":"Insureds Corporate Group - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"displayName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"category\": \"606b53fa6c1ef7e79a951b50\",\n        \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n        \"pathName\": \"CorporateName RestAPI\",\n        \"createdAt\": \"2024-05-28T05:56:15.666Z\",\n        \"updatedAt\": \"2024-05-29T14:02:57.170Z\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insureds"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:40:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"435"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685308349c8ebe5a6504f5e0\",\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"CorporateName RestAPI With Group 991931140-235326947\",\n        \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"264a5923-145b-4fb3-809f-56b92a2ee5c7"},{"name":"Insurance Contact","event":[{"listen":"test","script":{"id":"a9da7050-a68f-4162-93be-72019ada0ec4","exec":["const jsonData = pm.response.json().data;","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"b3bde99c-4ec8-4f96-8d00-8d18b6f7c190","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBrokerICNumber', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"28a8450e-6e11-46b8-aeba-b9f298b8bacb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamee+853947811-667789131@tryadvocate.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts","description":"<h2 id=\"add-insurance-contact\">Add Insurance Contact</h2>\n<p>This endpoint allows you to add a new insurance contact to the system. It is specifically designed for creating contacts of type \"broker\".</p>\n<h3 id=\"request\">Request</h3>\n<p><strong>Method:</strong> POST<br /><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/insurance-contacts</code></p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the broker. This is a required field.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of contact. For this endpoint, the value should be \"broker\", \"borrower\", or \"other\"</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the broker. This is a required field.</p>\n</li>\n</ul>\n<p>Example of a request body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"BrokerName\",\n  \"type\": \"broker\",\n  \"email\": \"brokername@example.com\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the server will respond with a confirmation of the added insurance contact. The structure of the response will typically include:</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier for the newly created insurance contact.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the broker as provided in the request.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of contact, which should reflect the value sent in the request.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the broker as provided in the request.</p>\n</li>\n<li><p><strong>status</strong> (string): A message indicating the success or failure of the operation.</p>\n</li>\n</ul>\n<p>Example of a successful response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"unique_contact_id\",\n  \"name\": \"BrokerName\",\n  \"type\": \"broker\",\n  \"email\": \"brokername@example.com\",\n  \"status\": \"Contact successfully added.\"\n}\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the email address provided is valid and follows the standard email format.</p>\n</li>\n<li><p>The <code>type</code> parameter is fixed to \"broker\" for this endpoint and should not be altered.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insurance-contacts"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"0c54f7bf-d324-46be-a12f-65c6e5832a40","name":"Insurance Contact - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamee+853947811-667789131@tryadvocate.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:46:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"247"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6853096b9c8ebe5a6504f70c\",\n        \"name\": \"BrokerName992145857-365018363\",\n        \"type\": \"broker\",\n        \"email\": \"brokernamee+992145857-365018363@tryadvocate.com\",\n        \"createdAt\": \"2025-06-18T18:46:03.622Z\",\n        \"updatedAt\": \"2025-06-18T18:46:03.622Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"28a8450e-6e11-46b8-aeba-b9f298b8bacb"},{"name":"Create a Case - New Case No Docs","event":[{"listen":"test","script":{"id":"cfa3ef1e-77d9-4f8a-91be-2640def3a6d2","exec":["const responseData = pm.response.json();","","pm.collectionVariables.set('newCaseNoDocRefId', responseData.data.externalId)","pm.collectionVariables.set('newCaseNoDocId', responseData.data.id)","",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"41a02a88-129f-4f86-b3dd-b5065dfa3bf1","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomCaseId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"8423a79e-e7f3-43b7-83a8-4df7c267da59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"new\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": false,\n  \"name\": \"New-Case-RestAPICase No Docs\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": false,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h2 id=\"add-case-request\">Add Case Request</h2>\n<p>This endpoint allows you to create a new case by submitting the necessary details in the request body.</p>\n<h3 id=\"http-method\">HTTP Method</h3>\n<p><code>POST</code></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>https://api-v2-test.tryadvocate.com/rest/cases</code></p>\n<h3 id=\"request-body-parameters\">Request Body Parameters</h3>\n<p>The request body must be in JSON format and should include the following parameters dpending on case type:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>name</code> (string): Name of your case,</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., <code>new</code>.</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>managementType</code> (string): <code>advocateManaged</code>, <code>selfManaged</code></p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date</p>\n</li>\n<li><p><code>riskReviewDeadlineAt</code> (date): riskReviewDeadlineAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): now/future this is reserved only for case type = renewal</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon a successful request, the server will respond with a JSON object containing the details of the newly created case. The exact structure of the response will depend on the implementation but will typically include confirmation of the case creation and any relevant identifiers or status messages.</p>\n<p>Ensure that all required fields are populated correctly to avoid errors in case creation.</p>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"bb924d9a-5805-48e2-8839-5382fc8167fe","name":"Create a Case - New Case No Docs","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"new\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"managementType\": \"advocateManaged\",\n  \"isEscrow\": false,\n  \"name\": \"New-Case-RestAPICase No Docs\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": false,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:12:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"714"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f3629c8ebe5a65049718\",\n        \"externalId\": \"787947539-289486203\",\n        \"name\": \"New-Case-RestAPICase No Docs\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"draft\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"managementType\": \"advocateManaged\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:12:02.016Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:12:02.016Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:12:02.016Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:12:02.501Z\",\n        \"updatedAt\": \"2025-06-18T17:12:02.501Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null,\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"8423a79e-e7f3-43b7-83a8-4df7c267da59"},{"name":"Assets","event":[{"listen":"test","script":{"id":"ef3f0ea0-e3fc-4898-be7f-8d58611e213b","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","    pm.expect(pm.response.code).to.equal(201);","});","","",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"2be13320-7245-40d1-addd-dc09d9e89b2b","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bd6150d0-ceda-46b1-ac36-8be9d05e281a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"6750238dbc0b293e7c24d613\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","description":"<h2 id=\"add-asset\">Add Asset</h2>\n<p>This endpoint allows you to add a new asset to the system. It is a POST request to the <code>/rest/assets</code> endpoint.</p>\n<h3 id=\"request\">Request</h3>\n<p>The request body must be in JSON format and contain the following parameters:</p>\n<ul>\n<li><p><strong>fields</strong> (Array): An array of field objects that define the asset's details.</p>\n<ul>\n<li><p><strong>fieldType</strong> (String): The type identifier for the field.</p>\n</li>\n<li><p><strong>value</strong> (Object): An object containing address details.</p>\n<ul>\n<li><p><strong>streetAddress</strong> (String): The street address of the asset.</p>\n</li>\n<li><p><strong>city</strong> (String): The city where the asset is located.</p>\n</li>\n<li><p><strong>postalCode</strong> (String): The postal code for the asset's location.</p>\n</li>\n<li><p><strong>state</strong> (String): The state where the asset is located.</p>\n</li>\n<li><p><strong>country</strong> (String): The country of the asset.</p>\n</li>\n<li><p><strong>formattedAddress</strong> (String): A formatted version of the full address.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>assetType</strong> (String): The identifier for the type of asset being added.</p>\n</li>\n<li><p><strong>caseId</strong> (String): The identifier for the case related to the asset.</p>\n</li>\n<li><p><strong>documents</strong> (Array): An array for any associated documents (currently empty).</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>The response will typically include a confirmation of the asset creation, along with any relevant identifiers or status messages. The exact format of the response may vary based on the implementation but will generally include a success status and possibly the details of the newly created asset.</p>\n<p>Ensure that all required fields are provided in the request body to successfully create an asset.</p>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"07af9949-7821-4c90-b39a-964317a72ff4","name":"Assets - Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"6750238dbc0b293e7c24d613\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:34:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f8c29c8ebe5a65049df2\",\n        \"caseId\": \"6852f3f19c8ebe5a65049743\",\n        \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"128 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:34:58.086Z\",\n        \"updatedAt\": \"2025-06-18T17:34:58.086Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"bd6150d0-ceda-46b1-ac36-8be9d05e281a"},{"name":"Case id publish","event":[{"listen":"test","script":{"id":"f4ec46e6-4bdc-4acb-b8f5-a9d1d824ee35","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"30715f12-8023-4639-bd58-268356b81109","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b4032002-0060-4ad0-8ff3-4678453b7948","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750238dbc0b293e7c24d613/publish","description":"<h2 id=\"publish-case-endpoint\">Publish Case Endpoint</h2>\n<p>This endpoint allows users to publish a case identified by <code>newCaseNoDocId</code>. The request is made using the HTTP POST method.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/cases/6750238dbc0b293e7c24d613/publish</code></p>\n</li>\n</ul>\n<h4 id=\"parameters\">Parameters</h4>\n<p>The request does not include a body, but the following path parameter is required:</p>\n<ul>\n<li><code>newCaseNoDocId</code> (string): The unique identifier for the case that is to be published.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the API will return a response indicating the status of the publication process. The expected response format is typically in JSON, containing relevant details about the published case.</p>\n<h3 id=\"example-response\">Example Response</h3>\n<p>The response will include keys that provide information about the publication status and any relevant details associated with the case.</p>\n<p>Ensure that the <code>newCaseNoDocId</code> is valid and corresponds to an existing case to avoid errors during the publication process.</p>\n","urlObject":{"path":["rest","cases","6750238dbc0b293e7c24d613","publish"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"fd3d54c3-eb26-4c9d-934b-77b89819b58e","name":"Case id publish - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750238dbc0b293e7c24d613/publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:35:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"731"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f3f19c8ebe5a65049743\",\n        \"externalId\": \"576142251-785873347\",\n        \"name\": \"New-Case-RestAPICase No Docs\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:14:25.359Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:14:25.359Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:14:25.359Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:14:25.786Z\",\n        \"updatedAt\": \"2025-06-18T17:35:16.432Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"b4032002-0060-4ad0-8ff3-4678453b7948"}],"id":"9f01e77e-e93b-4fdb-a8a4-e0a1e08c6021","description":"<p>This folder contains the full flow for creating a new case <strong>without uploading any documents</strong>.  </p>\n<p>Pre requisites</p>\n<p>Before creating a case you need to make sure that insured and insurance-contact are created and passed to case creation endpoint</p>\n<p>Order matters<br />It starts with case creation, continues with asset assignment and finalizes with publication.</p>\n","_postman_id":"9f01e77e-e93b-4fdb-a8a4-e0a1e08c6021","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}}},{"name":"New Case Creation Flow - Document","item":[{"name":"Create a Case - New Documents","event":[{"listen":"test","script":{"id":"986824c5-df9e-4bf8-923f-2c981c407f95","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('newCaseDocCaseId', responseData.data.id)","pm.collectionVariables.set('externalId', responseData.data.externalId)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"183da2dd-3f72-48d8-a02f-063765c6bb84","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomCaseId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6823d78e-e6e7-4b8e-88a8-ed3efce807d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"new\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"managementType\": \"advocateManaged\",\n  \"isEscrow\": false,\n  \"name\": \"New-Case-RestAPICase Docs\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h2 id=\"add-case-request\">Add Case Request</h2>\n<p>This endpoint allows users to create a new case entry in the system. It is particularly useful for adding new cases.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be a JSON object containing the following parameters:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>name</code> (string): Name of your case,</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., <code>new</code>.</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>managementType</code> (string): <code>advocateManaged</code>, <code>selfManaged</code></p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date</p>\n</li>\n<li><p><code>riskReviewDeadlineAt</code> (date): riskReviewDeadlineAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): now/future this is reserved only for case type = renewal</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon a successful request, the API will return a response containing the details of the newly created case.</p>\n<h3 id=\"additional-notes\">Additional Notes</h3>\n<ul>\n<li><p>Ensure that all required parameters are included in the request body to avoid errors.</p>\n</li>\n<li><p>The <code>externalId</code> must be unique; duplicates may result in a failure to create the case.</p>\n</li>\n<li><p>This endpoint is particularly useful for financial institutions managing multiple cases and needing to track new cases efficiently.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"813bd8d0-5509-4502-9023-31f24dd26ee8","name":"Create a Case - New Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"new\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": false,\n  \"name\": \"New-Case-RestAPICase Docs\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:35:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"711"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f8eb9c8ebe5a65049f15\",\n        \"externalId\": \"682029669-565804996\",\n        \"name\": \"New-Case-RestAPICase Docs\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"draft\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"managementType\": \"advocateManaged\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:35:39.589Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:35:39.589Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:35:39.589Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:35:39.789Z\",\n        \"updatedAt\": \"2025-06-18T17:35:39.789Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null,\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"6823d78e-e6e7-4b8e-88a8-ed3efce807d1"},{"name":"Assets","event":[{"listen":"test","script":{"id":"7ac9b1d2-50e5-49e8-895d-3ee5ebda8458","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","    pm.expect(pm.response.code).to.equal(201);","});","",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4aa2e97b-a9ef-48df-a46e-89c9d2d16b06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","description":"<h2 id=\"add-asset\">Add Asset</h2>\n<p>This endpoint allows users to add a new asset to the system. It accepts a POST request with a JSON payload that includes various details about the asset being added.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<p><strong>POST</strong></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>https://api-v2-test.tryadvocate.com/rest/assets</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>fields</strong>: An array of field objects, each containing:</p>\n<ul>\n<li><p><strong>fieldType</strong>: A string representing the type of the field.</p>\n</li>\n<li><p><strong>value</strong>: An object containing the address details:</p>\n<ul>\n<li><p><strong>streetAddress</strong>: The street address of the asset.</p>\n</li>\n<li><p><strong>city</strong>: The city where the asset is located.</p>\n</li>\n<li><p><strong>postalCode</strong>: The postal code for the asset's location.</p>\n</li>\n<li><p><strong>state</strong>: The state where the asset is located.</p>\n</li>\n<li><p><strong>country</strong>: The country of the asset.</p>\n</li>\n<li><p><strong>formattedAddress</strong>: A formatted string representation of the full address.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>assetType</strong>: A string representing the type of asset being added (e.g., MultiFamily).</p>\n</li>\n<li><p><strong>caseId</strong>: A string representing the ID of the case associated with the asset.</p>\n</li>\n<li><p><strong>documents</strong>: An array of documents associated with the asset (can be empty).</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The response will typically include a confirmation of the asset creation along with any relevant identifiers or status messages. The exact structure of the response may vary based on the implementation but is generally expected to be in JSON format.</p>\n<p>Ensure that all required fields are filled out correctly to avoid validation errors when submitting the request.</p>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"81b78bc0-462f-47c1-9cc2-a784153a72cb","name":"Assets - Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:36:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f9009c8ebe5a6504a1bf\",\n        \"caseId\": \"6852f8eb9c8ebe5a65049f15\",\n        \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"128 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:36:00.149Z\",\n        \"updatedAt\": \"2025-06-18T17:36:00.149Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"4aa2e97b-a9ef-48df-a46e-89c9d2d16b06"},{"name":"Documents sign-urls","event":[{"listen":"test","script":{"id":"ff7cef5d-e513-45b5-a86b-819f82b93ac6","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('signedUrl', responseData.data[0].signedUrl)","pm.collectionVariables.set('directUploadKey', responseData.data[0].directUploadKey)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"0494c1cd-f46a-4e12-9c98-fe43f2b3f25c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint allows users to generate sign URLs for documents that need to be signed electronically. By sending a POST request to <code>https://api-v2-test.tryadvocate.com/rest/documents/sign-urls</code>, users can specify the documents they want to include in the signing process.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be in JSON format and should contain the following parameters:</p>\n<ul>\n<li><p><strong>docs</strong>: An array of document objects. Each document object must include:</p>\n<ul>\n<li><p><strong>fileName</strong> (string): The name of the file to be signed, including the file extension (e.g., \"filename.pdf\").</p>\n</li>\n<li><p><strong>fileType</strong> (string): The MIME type of the file, indicating the format of the document (e.g., \"application/pdf\").</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"example-request-body\">Example Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response from this endpoint will typically include a confirmation of the generated sign URLs for the specified documents. The exact structure of the response will depend on the implementation, but it generally includes:</p>\n<ul>\n<li><strong>signUrls</strong>: An array of URLs that can be used to access the signing interface for each document.</li>\n</ul>\n<h3 id=\"usage\">Usage</h3>\n<p>This endpoint is particularly useful for applications that require document signing capabilities, allowing users to prepare documents for electronic signatures efficiently.  </p>\n<h3 id></h3>\n<p><em><strong>!!! Important !!!<br />This endpoint will return a signUrl that should be used in a follow-up PUT AWS endpoint as a URL.</strong></em></p>\n","urlObject":{"path":["rest","documents","sign-urls"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"2c2842be-29b9-48d2-b8b5-df4ffb2e7da7","name":"Documents sign-urls - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:36:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"709"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"fileExt\": \"pdf\",\n            \"directUploadKey\": \"Your direct upload Value\",\n            \"signedUrl\": \"Your signed URL value\"\n        }\n    ]\n}"}],"_postman_id":"0494c1cd-f46a-4e12-9c98-fe43f2b3f25c"},{"name":"AWS","event":[{"listen":"test","script":{"exec":["pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});",""],"type":"text/javascript","packages":{},"id":"06cdb5c2-9e50-4b98-a81b-1cad509adc5a"}}],"id":"2740fd00-bb34-44eb-b15f-28397728949a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"file","file":{"src":"postman-cloud:///1ef1dcbc-a711-4570-973b-8f33a95f04c0"}},"url":"signedUrl","description":"<h2 id=\"http-put-request-to-update-resource\">HTTP PUT Request to Update Resource</h2>\n<p>This endpoint allows you to update a resource at the specified <code>signedUrl</code>. The request requires a payload that contains the necessary parameters to modify the existing resource.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li>The request body is not required for this request; the URL is dynamically generated by the document sign-urls request and should be pasted here as the URL.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the server will respond with a status indicating the outcome of the update operation. The response typically includes:</p>\n<ul>\n<li><p>A confirmation of the successful update.</p>\n</li>\n<li><p>Any relevant data regarding the updated resource.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the correct permissions to update the resource.</p>\n</li>\n<li><p>Validate the request parameters before sending to avoid errors.</p>\n</li>\n<li><p>If the request fails, check the error message returned in the response for troubleshooting.</p>\n</li>\n</ul>\n<p>Please refer to the API documentation for more details on the required parameters and their expected formats.</p>\n<h3 id=\"-important-\">!!! Important !!!</h3>\n<p>In order to inject a file, you need to point out the file you want to upload, which can be a cloud key or it can be a file on your machine.</p>\n<p>Here you can find a curl that might help you:<br /><code>curl --location --request PUT 'signedUrl' --header 'Content-Type: application/octet-stream' --data-binary '@postman-cloud:///1ef1dcbc-a711-4570-973b-8f33a95f04c0'</code></p>\n<p><strong>--data-binary is the spot where you want to add the path to your file.</strong></p>\n","urlObject":{"host":["signedUrl"],"query":[],"variable":[]}},"response":[],"_postman_id":"2740fd00-bb34-44eb-b15f-28397728949a"},{"name":"Documents","event":[{"listen":"test","script":{"id":"6db2edc2-4ed8-4228-b2ca-897bd98db01b","exec":["","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"66dd39a4-a3b8-41c3-91c2-b45ec63c28a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"Case #23452345.pdf\",\n      \"fileType\": \"application/pdf\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h3 id=\"api-endpoint-add-document\">API Endpoint: Add Document</h3>\n<p>This endpoint allows users to upload documents associated with a case. It is designed to facilitate the addition of document files, which can be linked to specific cases for record-keeping and processing purposes.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/documents</code></p>\n</li>\n</ul>\n<h5 id=\"request-body-format\">Request Body Format</h5>\n<p>The request body must be in JSON format and should contain the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"name\": \"string\",          // The name of the document being uploaded\n      \"caseId\": \"string\",        // The unique identifier of the case associated with the document\n      \"categoryId\": \"string\",     // The category identifier for the document type\n      \"fileName\": \"string\",      // The name of the file being uploaded\n      \"fileType\": \"string\",      // The MIME type of the file (e.g., application/pdf)\n      \"directUploadKey\": \"string\" // A key for direct upload handling\n    }\n  ]\n}\n\n</code></pre>\n<ul>\n<li><p><strong>Parameters</strong>:</p>\n<ul>\n<li><p><code>name</code> (string): The name of the document.</p>\n</li>\n<li><p><code>caseId</code> (string): The ID of the case to which this document is related.</p>\n</li>\n<li><p><code>categoryId</code> (string): The ID representing the category of the document.</p>\n</li>\n<li><p><code>fileName</code> (string): The original name of the file being uploaded.</p>\n</li>\n<li><p><code>fileType</code> (string): The MIME type of the document file.</p>\n</li>\n<li><p><code>directUploadKey</code> (string): A key used for managing the direct upload of the file. It should be taken from the endpoint rest/documents/sign-urls</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response from this endpoint will provide confirmation of the document upload. The structure of the response may include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates the success or failure of the request.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message regarding the upload process.</p>\n</li>\n<li><p><strong>data</strong>: An object containing details about the uploaded document, such as its ID and any other relevant metadata.</p>\n</li>\n</ul>\n<p>Ensure that all required fields are included in the request body to avoid errors during the document upload process.</p>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"4426660c-3521-4dfb-bb26-cfe555ff3903","name":"Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"Case #23452345.pdf\",\n      \"fileType\": \"application/pdf\",\n      \"directUploadKey\": \"upload_66b9c0cc4cbe47df4881b492_7d77f82c-5331-4caf-8246-22ad4fe80c4d.png\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:36:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"823"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6852f9289c8ebe5a6504a1ef\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f8eb9c8ebe5a65049f15\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:36:40.612Z\",\n            \"updatedAt\": \"2025-06-18T17:36:40.612Z\",\n            \"url\": \"Your direct upload Value\",\n            \"versions\": [],\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"66dd39a4-a3b8-41c3-91c2-b45ec63c28a3"},{"name":"Case id publish","event":[{"listen":"test","script":{"id":"264ef3de-a5b0-490a-b4df-91733e776d6c","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"9b23ad26-c15b-426f-9993-030dcf3174dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db/publish","description":"<h3 id=\"publish-case-document\">Publish Case Document</h3>\n<p>This endpoint is used to publish a case document identified by the <code>newCaseDocCaseId</code>. When this request is successfully executed, it finalizes the case document and makes it available for further processing.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db/publish</code></p>\n</li>\n</ul>\n<h5 id=\"request-body\">Request Body</h5>\n<p>The request body must be sent in the form of <code>application/x-www-form-urlencoded</code> or <code>multipart/form-data</code>. The following parameters are expected:</p>\n<ul>\n<li><p><strong>parameter1</strong> (text): Description of the first parameter.</p>\n</li>\n<li><p><strong>parameter2</strong> (text): Description of the second parameter.</p>\n</li>\n<li><p><strong>parameter3</strong> (file): Description of the file parameter.</p>\n</li>\n</ul>\n<p>Ensure that all required parameters are included in the request body for successful execution.</p>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful execution, the response will contain the following structure:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates the success or failure of the request.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional context about the operation.</p>\n</li>\n<li><p><strong>data</strong>: Contains relevant information about the published case document, such as its ID and status.</p>\n</li>\n</ul>\n<p>Make sure to handle the response appropriately to confirm the successful publication of the case document.</p>\n","urlObject":{"path":["rest","cases","6750239bbc0b293e7c24e8db","publish"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"0c89438a-91c0-4294-ac05-ad9e5efe947e","name":"Case id publish - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db/publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:36:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"750"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f8eb9c8ebe5a65049f15\",\n        \"externalId\": \"682029669-565804996\",\n        \"name\": \"New-Case-RestAPICase Docs\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852f9289c8ebe5a6504a1ef\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:35:39.589Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:35:39.589Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:35:39.589Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:35:39.789Z\",\n        \"updatedAt\": \"2025-06-18T17:36:55.426Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"9b23ad26-c15b-426f-9993-030dcf3174dc"}],"id":"ef748738-a0c1-489d-8048-11ccdc75508a","description":"<p>Handles new case creation <strong>with documents</strong> attached.<br />Pre requisites</p>\n<p>Before creating a case you need to make sure that insured and insurance-contact are created and passed to case creation endpoint</p>\n<p>Requests are structured to first create the case, upload assets, then attach documents.</p>\n","_postman_id":"ef748738-a0c1-489d-8048-11ccdc75508a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}}},{"name":"Renewal Case Creation Flow - Future Renewal","item":[{"name":"Create a Case - Renewal - Future Renewal","event":[{"listen":"test","script":{"id":"fc372b43-5a00-4435-b099-45e49691180c","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('newPostCloseRenewalCaseId', responseData.data.id)","pm.collectionVariables.set('externalId', responseData.data.externalId)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"d5c82c95-7dde-4fe0-9cff-41ec8627b07e","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomCaseId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a86c3d61-95fb-4af9-9853-98a4a6d41a57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"managementType\": \"advocateManaged\",\n  \"isEscrow\": false,\n  \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": FUTURE,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h2 id=\"endpoint-post-restcases\">Endpoint: POST /rest/cases</h2>\n<p>This endpoint is used to create a new case entry in the system. It accepts a request body containing details about the case, which are necessary for processing the case application.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>name</code> (string): Name of your case</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., \"new/renewal\".</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>managementType</code> (string): <code>advocateManaged</code>, <code>selfManaged</code></p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date (Optional)</p>\n</li>\n<li><p><code>expectedMaturingAt</code> (date): expectedMaturingAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): <code>future</code> only for future renewal cases</p>\n</li>\n</ul>\n<h3 id=\"expected-response-structure\">Expected Response Structure</h3>\n<p>Upon a successful request, the API will return a response containing the details of the newly created case.</p>\n<p>Make sure to provide all required fields in the request body to ensure proper processing of the case application.</p>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"45447c44-905f-412a-b3a1-541bd2d25759","name":"Create a Case - Renewal - Future Renewal - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": false,\n  \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": FUTURE,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/cases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:37:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"725"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f94b9c8ebe5a6504a30f\",\n        \"externalId\": \"658939807-966179636\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"draft\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"managementType\": \"advocateManaged\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:37:14.850Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:37:14.850Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:37:14.850Z\",\n        \"complianceReview\": FUTURE,\n        \"createdAt\": \"2025-06-18T17:37:15.050Z\",\n        \"updatedAt\": \"2025-06-18T17:37:15.050Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null,\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"a86c3d61-95fb-4af9-9853-98a4a6d41a57"},{"name":"Assets","event":[{"listen":"test","script":{"id":"4c0a548b-cadb-4d6c-9ca9-5070d7e1d230","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('assetIdPostClose', responseData.data.id)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"91aac2f7-852b-4212-9a94-4725d5ac1c5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","description":"<h2 id=\"add-asset\">Add Asset</h2>\n<p>This endpoint allows users to create a new asset by submitting relevant details in the request body. The asset information is structured to include various fields that describe the asset's characteristics.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>fields</strong> (Array of Objects): A collection of field objects that contain specific details about the asset.</p>\n<ul>\n<li><p><strong>fieldType</strong> (String): The identifier for the type of field being submitted.</p>\n</li>\n<li><p><strong>value</strong> (Object): An object containing the address details of the asset.</p>\n<ul>\n<li><p><strong>streetAddress</strong> (String): The street address of the asset.</p>\n</li>\n<li><p><strong>city</strong> (String): The city where the asset is located.</p>\n</li>\n<li><p><strong>postalCode</strong> (String): The postal code for the asset's location.</p>\n</li>\n<li><p><strong>state</strong> (String): The state where the asset is located.</p>\n</li>\n<li><p><strong>country</strong> (String): The country where the asset is located.</p>\n</li>\n<li><p><strong>formattedAddress</strong> (String): A formatted version of the full address.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>assetType</strong> (String): The identifier for the type of asset being created, represented by <code></code>.</p>\n</li>\n<li><p><strong>caseId</strong> (String): The identifier for the case associated with the asset, represented by <code></code>.</p>\n</li>\n<li><p><strong>documents</strong> (Array): An array that can hold document objects related to the asset. Currently, it is empty, indicating no documents are being submitted with this request.</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful creation of the asset, the API will return a response indicating the success of the operation along with any relevant details about the created asset. The exact structure of the response will depend on the implementation but typically includes confirmation of the asset's creation and possibly the ID of the newly created asset.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that all required fields are included in the request body to avoid validation errors.</p>\n</li>\n<li><p>The identifiers for asset type, lender, and case must be valid and correspond to existing entries in the system.</p>\n</li>\n<li><p>The formatted address is automatically generated based on the provided address components.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"1180c8ad-5f9f-4608-85a0-52b79a722340","name":"Assets - Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:37:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f95c9c8ebe5a6504a5b9\",\n        \"caseId\": \"6852f94b9c8ebe5a6504a30f\",\n        \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"128 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:37:32.942Z\",\n        \"updatedAt\": \"2025-06-18T17:37:32.942Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"91aac2f7-852b-4212-9a94-4725d5ac1c5b"},{"name":"Documents sign-urls","event":[{"listen":"test","script":{"id":"34158ba3-0688-4744-8916-547bb96dd00b","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('signedUrl', responseData.data[0].signedUrl)","pm.collectionVariables.set('directUploadKey', responseData.data[0].directUploadKey)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"92d5d551-8702-418f-892d-72a670cfba0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint allows users to generate sign URLs for documents that need to be signed electronically. By sending a POST request to <code>https://api-v2-test.tryadvocate.com/rest/documents/sign-urls</code>, users can specify the documents for which they require signing URLs.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>docs</strong> (Array of Objects): This parameter contains a list of documents that need to be signed. Each document object should have the following properties:</p>\n<ul>\n<li><p><strong>fileName</strong> (String): The name of the document file (e.g., \"filename.pdf\").</p>\n</li>\n<li><p><strong>fileType</strong> (String): The MIME type of the document file (e.g., \"application/pdf\").</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a response containing the generated sign URLs for the specified documents. The response structure will provide the necessary information for users to access the signing links.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the document files are in the correct format as specified by the <code>fileType</code>.</p>\n</li>\n<li><p>This endpoint is intended for use in applications that require electronic signatures for document processing.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","documents","sign-urls"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"37d16201-b2a8-4368-a47f-dff9d328c955","name":"Documents sign-urls - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:37:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"709"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"fileExt\": \"pdf\",\n            \"directUploadKey\": \"Your direct upload Value\",\n            \"signedUrl\": \"Your signed URL value\"\n        }\n    ]\n}"}],"_postman_id":"92d5d551-8702-418f-892d-72a670cfba0b"},{"name":"AWS","event":[{"listen":"test","script":{"exec":["pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});",""],"type":"text/javascript","packages":{},"id":"57c17a33-b8f4-40dd-9fe8-b76106ba3388"}}],"id":"36c61f2c-34ab-4885-8582-1e5f39e4472c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"file","file":{"src":"postman-cloud:///1ef1dcbc-a711-4570-973b-8f33a95f04c0"}},"url":"signedUrl","description":"<h2 id=\"update-resource\">Update Resource</h2>\n<p>This endpoint allows you to update an existing resource at the specified <code>signedUrl</code>.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: PUT</p>\n</li>\n<li><p><strong>URL</strong>: <code>signedUrl</code></p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li>The request body is not required for this request; the URL is dynamically generated by the document sign-urls request and should be pasted here as the URL.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the server will return a response indicating the status of the update operation. The response typically includes a success message and may contain the updated resource details or confirmation of the update.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure proper authentication and authorization are in place when making this request.</p>\n</li>\n<li><p>Check for any specific requirements or constraints related to the resource being updated.</p>\n</li>\n<li><p>Handle potential errors gracefully, such as validation errors or resource not found scenarios.</p>\n</li>\n</ul>\n<p>Make sure to test the endpoint thoroughly to confirm that it behaves as expected with the intended payload.</p>\n","urlObject":{"host":["signedUrl"],"query":[],"variable":[]}},"response":[],"_postman_id":"36c61f2c-34ab-4885-8582-1e5f39e4472c"},{"name":"Documents","event":[{"listen":"test","script":{"id":"34b76029-3f16-4c80-b667-b83c0911adb5","exec":["","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});",""],"type":"text/javascript","packages":{}}}],"id":"df886017-329c-4203-8750-d9000354277f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h2 id=\"endpoint-description\">Endpoint Description</h2>\n<p>This endpoint allows users to upload documents associated with a specific case. The request is made via an HTTP POST to <code>https://api-v2-test.tryadvocate.com/rest/documents</code>, where the document details are provided in the request body.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request body should be in JSON format and must contain a key named <code>docs</code>, which is an array of document objects. Each document object should include the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the document being uploaded.</p>\n</li>\n<li><p><strong>caseId</strong> (string): The identifier of the case associated with the document.</p>\n</li>\n<li><p><strong>categoryId</strong> (string): The identifier for the category the document belongs to.</p>\n</li>\n<li><p><strong>fileName</strong> (string): The name of the file being uploaded.</p>\n</li>\n<li><p><strong>fileType</strong> (string): The MIME type of the file being uploaded.</p>\n</li>\n<li><p><strong>directUploadKey</strong> (string): A key used for direct upload functionality.</p>\n</li>\n</ul>\n<h4 id=\"example-request-body\">Example Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response from this endpoint will typically include a confirmation of the upload, along with any relevant metadata about the uploaded documents. The exact structure of the response may vary based on the implementation, but it generally includes:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the document upload was successful.</p>\n</li>\n<li><p><strong>message</strong> (string): A message providing additional information about the upload status.</p>\n</li>\n<li><p><strong>data</strong> (object): Contains details about the uploaded document(s), such as their IDs or URLs.</p>\n</li>\n</ul>\n<p>Make sure to handle the response appropriately to confirm successful uploads and manage any errors that may arise during the process.</p>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"1486c246-7277-4ed2-ab10-39a62b054ff3","name":"Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:38:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"814"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6852f97b9c8ebe5a6504a5e9\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f94b9c8ebe5a6504a30f\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:38:03.327Z\",\n            \"updatedAt\": \"2025-06-18T17:38:03.327Z\",\n            \"url\": \"Your direct upload Value\",\n            \"versions\": [],\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"df886017-329c-4203-8750-d9000354277f"},{"name":"Case id publish","event":[{"listen":"test","script":{"id":"24848bb0-80e4-497d-8699-7c66223fcdb9","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"caeee631-cb6f-4c41-ba8f-05450fb77158","exec":[""],"type":"text/javascript","packages":{}}}],"id":"840ceae9-0319-4f04-9f35-8e96d1bdb2ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish","description":"<h2 id=\"publish-case-endpoint\">Publish Case Endpoint</h2>\n<p>This endpoint is used to publish a case identified by the <code>newPostCloseRenewalCaseId</code>. By sending a POST request to this endpoint, users can initiate the publishing process for a specific case.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases//publish</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be formatted as <code>application/x-www-form-urlencoded</code> and should include the following parameters:</p>\n<ul>\n<li><p><strong>Parameter 1</strong>: <code>parameter_name_1</code> (type: text) - Description of parameter 1.</p>\n</li>\n<li><p><strong>Parameter 2</strong>: <code>parameter_name_2</code> (type: text) - Description of parameter 2.</p>\n</li>\n<li><p><em>(Add additional parameters as necessary)</em></p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful request, the response will typically include the following fields:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates the success or failure of the publish operation.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional context about the operation.</p>\n</li>\n<li><p><strong>caseId</strong>: The ID of the case that was published.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Case published successfully.\",\n  \"caseId\": \"12345\"\n}\n\n</code></pre>\n<p>Ensure that all required parameters are included in the request body to avoid errors and to successfully publish the case.</p>\n","urlObject":{"path":["rest","cases","","publish"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"e648f336-b813-4447-9a47-9d713c40b4a9","name":"Case id publish - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:38:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"772"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f94b9c8ebe5a6504a30f\",\n        \"externalId\": \"658939807-966179636\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852f97b9c8ebe5a6504a5e9\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:37:14.850Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:37:14.850Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:37:14.850Z\",\n        \"complianceReview\": FUTURE,\n        \"createdAt\": \"2025-06-18T17:37:15.050Z\",\n        \"updatedAt\": \"2025-06-18T17:38:16.251Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"840ceae9-0319-4f04-9f35-8e96d1bdb2ae"}],"id":"e1348a0a-e7ec-404b-87e4-306a7fa16675","description":"<p>Covers flows where Cases have Future Renewal type which is marked with <code>complianceReview = true</code>.</p>\n<p>Pre requisites</p>\n<p>Before creating a case you need to make sure that insured and insurance-contact are created and passed to case creation endpoint</p>\n","_postman_id":"e1348a0a-e7ec-404b-87e4-306a7fa16675","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}}},{"name":"Renewal Case Creation Flow - Audit Now","item":[{"name":"Create a Case - Renewal Audit Now","event":[{"listen":"test","script":{"id":"a38dfae3-8861-4f9b-b7dd-0a1016cdf0cc","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('newPostCloseAuditNowCaseId', responseData.data.id)","pm.collectionVariables.set('newPostCloseAuditNowCaseRefId', responseData.data.externalId)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"eaeffd90-a1d9-4786-833c-ad15c8105070","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomCaseId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2827a7ca-a74b-4688-b4d3-88eb3510ec19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"managementType\": \"advocateManaged\",\n  \"isEscrow\": false,\n  \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h2 id=\"add-case-request\">Add Case Request</h2>\n<p>This endpoint allows the user to create a new case entry in the system. It is designed to accept case details and process them accordingly.</p>\n<h3 id=\"request\">Request</h3>\n<p><strong>Method:</strong> POST<br /><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/cases</code></p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should contain the following parameters:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>name</code> (string): Name of your case</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., \"renewal\".</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>managementType</code> (string): <code>advocateManaged</code>, <code>selfManaged</code></p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date (Optional)</p>\n</li>\n<li><p><code>expectedMaturingAt</code> (date): expectedMaturingAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): <code>now</code></p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the server will return a response indicating the result of the operation.</p>\n<p>Ensure that all required fields are provided in the request body to avoid errors during processing.</p>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"85957553-a6d4-49ff-9ce9-b806bac64e79","name":"Create a Case - Post Close Audit Now - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": false,\n  \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/cases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:39:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"724"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f9d59c8ebe5a6504a84c\",\n        \"externalId\": \"191195757-607289052\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"draft\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"managementType\": \"advocateManaged\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:39:33.002Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:39:33.002Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:39:33.002Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:39:33.466Z\",\n        \"updatedAt\": \"2025-06-18T17:39:33.466Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null,\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"2827a7ca-a74b-4688-b4d3-88eb3510ec19"},{"name":"Assets","event":[{"listen":"test","script":{"id":"d281423a-b77b-423f-a39c-45ec085ba579","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('assetIdPostClose', responseData.data.id)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"1bf97f56-454f-4714-ada1-bbcf10c3efdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","description":"<h2 id=\"add-asset\">Add Asset</h2>\n<p>This endpoint allows users to create a new asset in the system. The request requires specific details about the asset being created, including its type, lender information, case ID, and associated fields.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and includes the following parameters:</p>\n<ul>\n<li><p><strong>fields</strong>: An array of objects representing the details of the asset.</p>\n<ul>\n<li><p><strong>fieldType</strong>: A string representing the type of field (e.g., identifier for the field).</p>\n</li>\n<li><p><strong>value</strong>: An object containing the address details of the asset.</p>\n<ul>\n<li><p><strong>streetAddress</strong>: The street address of the asset.</p>\n</li>\n<li><p><strong>city</strong>: The city where the asset is located.</p>\n</li>\n<li><p><strong>postalCode</strong>: The postal code for the asset's location.</p>\n</li>\n<li><p><strong>state</strong>: The state where the asset is located.</p>\n</li>\n<li><p><strong>country</strong>: The country of the asset.</p>\n</li>\n<li><p><strong>formattedAddress</strong>: A string that combines the address details into a formatted address.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>assetType</strong>: A string representing the type of asset being created (e.g., MultiFamilyAssetTypeId).</p>\n</li>\n<li><p><strong>caseId</strong>: A string representing the ID of the case related to the asset.</p>\n</li>\n<li><p><strong>documents</strong>: An array (currently empty) that can hold any documents associated with the asset.</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will typically include a confirmation of the asset creation, along with any relevant identifiers or status messages. The exact structure of the response may vary based on the implementation but will generally confirm the success of the operation or provide error messages if applicable.</p>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"ffc3c5c8-d694-4d56-8e9c-18b143756dcc","name":"Assets - Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:43:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fadd9c8ebe5a6504aaf6\",\n        \"caseId\": \"6852f9d59c8ebe5a6504a84c\",\n        \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"128 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:43:57.536Z\",\n        \"updatedAt\": \"2025-06-18T17:43:57.536Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"1bf97f56-454f-4714-ada1-bbcf10c3efdc"},{"name":"Documents sign-urls","event":[{"listen":"test","script":{"id":"63dcdfca-2da0-4c64-9261-35240c6763a9","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('signedUrl', responseData.data[0].signedUrl)","pm.collectionVariables.set('directUploadKey', responseData.data[0].directUploadKey)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"558a7eeb-61bc-4569-97db-5a1cf28a46ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls","description":"<h2 id=\"endpoint-create-sign-urls\">Endpoint: Create Sign URLs</h2>\n<p>This endpoint allows users to generate sign URLs for documents that need to be signed. It accepts a JSON payload containing information about the documents and returns a response with the generated sign URLs.</p>\n<h3 id=\"request\">Request</h3>\n<p><strong>Method:</strong> POST<br /><strong>URL:</strong> <code>https://api-v2-test.tryadvocate.com/rest/documents/sign-urls</code></p>\n<p><strong>Request Body:</strong><br />The request body should be in JSON format and must include the following parameters:</p>\n<ul>\n<li><p><code>docs</code> (Array of Objects): An array containing document objects. Each document object should have:</p>\n<ul>\n<li><p><code>fileName</code> (String): The name of the file to be signed.</p>\n</li>\n<li><p><code>fileType</code> (String): The MIME type of the file (e.g., <code>application/pdf</code>).</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain the generated sign URLs for the documents provided in the request. The structure of the response will typically include:</p>\n<ul>\n<li><code>signUrls</code> (Array of Strings): An array of URLs that can be used to access the signing interface for each document.</li>\n</ul>\n<h3 id=\"example-response\">Example Response:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"signUrls\": [\n    \"https://example.com/sign?docId=12345\",\n    \"https://example.com/sign?docId=67890\"\n  ]\n}\n\n</code></pre>\n<p>Make sure to provide valid document details in the request to successfully generate the sign URLs.</p>\n","urlObject":{"path":["rest","documents","sign-urls"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"2ee9df2b-b9be-496d-a042-067106feb6d5","name":"Documents sign-urls - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:44:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"709"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"fileExt\": \"pdf\",\n            \"directUploadKey\": \"Your direct upload Value\",\n            \"signedUrl\": \"Your signed URL value\"\n        }\n    ]\n}"}],"_postman_id":"558a7eeb-61bc-4569-97db-5a1cf28a46ec"},{"name":"AWS","event":[{"listen":"test","script":{"exec":["pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});",""],"type":"text/javascript","packages":{},"id":"123a4173-fa0e-4436-b2dd-f6eee08c08b1"}}],"id":"7c62393f-8daa-4053-8ab1-8d5c9b0064ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"file","file":{"src":"postman-cloud:///1ef1dcbc-a711-4570-973b-8f33a95f04c0"}},"url":"signedUrl","description":"<h2 id=\"update-resource\">Update Resource</h2>\n<p>This endpoint allows you to update a resource at the specified <code>signedUrl</code>.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method:</strong> PUT</p>\n</li>\n<li><p><strong>URL:</strong> <code>signedUrl</code></p>\n</li>\n<li><p><strong>Request Body:</strong> The request body is not required for this request; the URL is dynamically generated by the document sign-urls request and should be pasted here as the URL.</p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body is not required for this request; the URL is dynamically generated by the document sign-urls request and should be pasted here as the URL.</p>\n<p>Expected Response</p>\n<p>Upon a successful request, you can expect a response that indicates the status of the update operation. The response will typically include:</p>\n<ul>\n<li><p>A confirmation message or status code indicating success.</p>\n</li>\n<li><p>Any relevant data related to the updated resource.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the request body contains all the required parameters for the update operation.</p>\n</li>\n<li><p>Check for any specific validation rules or constraints that may apply to the resource being updated.</p>\n</li>\n<li><p>It is advisable to handle error responses appropriately, as they may provide insights into what went wrong during the update process.</p>\n</li>\n</ul>\n","urlObject":{"host":["signedUrl"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c62393f-8daa-4053-8ab1-8d5c9b0064ea"},{"name":"Documents","event":[{"listen":"test","script":{"id":"5107c32b-18c7-4895-9ecc-3b1d01422891","exec":["","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","",""],"type":"text/javascript","packages":{}}}],"id":"81fabc3e-a80a-41a9-b336-d4a8f7057723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h2 id=\"add-document\">Add Document</h2>\n<p>This endpoint allows users to upload documents associated with a case. The request must include a JSON payload containing the details of the documents to be uploaded.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>docs</strong>: An array of document objects, each containing the following fields:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the document.</p>\n</li>\n<li><p><strong>caseId</strong> (string): The unique identifier for the case associated with the document.</p>\n</li>\n<li><p><strong>categoryId</strong> (string): The identifier for the category under which the document falls.</p>\n</li>\n<li><p><strong>fileName</strong> (string): The name of the file being uploaded.</p>\n</li>\n<li><p><strong>fileType</strong> (string): The MIME type of the file being uploaded.</p>\n</li>\n<li><p><strong>directUploadKey</strong> (string): A key used for direct upload functionality.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a response indicating the status of the document upload. The response typically includes information about the success of the operation and any relevant identifiers for the uploaded documents.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>caseId</code> and <code>directUploadKey</code> are valid and correspond to existing records in the system.</p>\n</li>\n<li><p>The <code>fileType</code> must match the actual type of the file being uploaded to avoid any processing errors.</p>\n</li>\n<li><p>This endpoint is designed for direct uploads; ensure that the correct permissions are set for the user making the request.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"921fe830-e7d3-4e3c-bbbf-11f97bd3b070","name":"Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:44:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"814"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6852faf99c8ebe5a6504ab26\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f9d59c8ebe5a6504a84c\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:44:25.237Z\",\n            \"updatedAt\": \"2025-06-18T17:44:25.237Z\",\n            \"url\": \"Your direct upload Value\",\n            \"versions\": [],\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"81fabc3e-a80a-41a9-b336-d4a8f7057723"},{"name":"Case id publish","event":[{"listen":"test","script":{"id":"ae99fce9-d5ad-4b2d-9e6d-25573ef1f39a","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"4951670c-b388-4ab7-9b8f-7dbefadef3dd","exec":[""],"type":"text/javascript","packages":{}}}],"id":"a591f739-d8ca-4988-a4fa-c3c7ddb35ae2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish","description":"<h3 id=\"publish-case-audit\">Publish Case Audit</h3>\n<p>This endpoint is used to publish a case audit identified by the specified <code>newPostCloseAuditNowCaseId</code>. It allows users to finalize and submit the case audit for processing.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases//publish</code></p>\n</li>\n</ul>\n<h5 id=\"input-parameters\">Input Parameters</h5>\n<p>The request does not require a body, but it is essential to ensure that the <code>newPostCloseAuditNowCaseId</code> is valid and corresponds to an existing case audit.</p>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful request, the API will return a response indicating the status of the publish operation. The structure of the response includes:</p>\n<ul>\n<li><p><strong>status</strong>: A string indicating the result of the operation (e.g., \"success\" or \"failure\").</p>\n</li>\n<li><p><strong>message</strong>: A detailed message providing additional information about the operation.</p>\n</li>\n</ul>\n<p>Make sure to handle the response appropriately to confirm the successful publication of the case audit.</p>\n","urlObject":{"path":["rest","cases","","publish"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"04d46cb5-cd7c-411c-930f-30ef7ddfe655","name":"Case id publish - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:44:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"763"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f9d59c8ebe5a6504a84c\",\n        \"externalId\": \"191195757-607289052\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852faf99c8ebe5a6504ab26\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:39:33.002Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:39:33.002Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:39:33.002Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:39:33.466Z\",\n        \"updatedAt\": \"2025-06-18T17:44:35.688Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"a591f739-d8ca-4988-a4fa-c3c7ddb35ae2"}],"id":"520b688f-ab7e-4277-9096-9f534bb7bccc","description":"<p>Covers flows where Cases have Renewal type - Audit Now, which is marked with <code>complianceReview = false</code>.</p>\n<p>Pre requisites</p>\n<p>Before creating a case you need to make sure that insured and insurance-contact are created and passed to case creation endpoint</p>\n","_postman_id":"520b688f-ab7e-4277-9096-9f534bb7bccc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}}},{"name":"Policy Creation Flow","item":[{"name":"Renewal - Audit Now One Asset","item":[{"name":"Renewal - Audit Now","event":[{"listen":"test","script":{"id":"5bf2858b-0219-40ac-885e-4e7bfcd450f4","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('newPostCloseAuditNowCaseId', responseData.data.id)","pm.collectionVariables.set('newPostCloseAuditNowCaseRefId', responseData.data.externalId)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"5ba5d71d-55b0-4789-b497-9cbb09321112","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomCaseId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6d4c575a-0c44-4ee5-9757-4210787af626","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"managementType\": \"advocateManaged\",\n  \"isEscrow\": false,\n  \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint allows users to create a new case record. It is designed to accept case details and process them accordingly.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases</code></p>\n</li>\n</ul>\n<p><strong>Request Body</strong>: The request body must be in JSON format and should include the following:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>name</code> (string): Name of your case,</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., <code>renewal</code>.</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>managementType</code> (string): <code>advocateManaged</code>, <code>selfManaged</code></p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date (Optional)</p>\n</li>\n<li><p><code>expectedMaturingAt</code> (date): expectedMaturingAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): <code>now</code> only for future renewal cases</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response from this endpoint will typically include details about the newly created case record.</p>\n<h3 id=\"notes\">Notes</h3>\n<p>Ensure that all required fields are provided in the request body to avoid validation errors. The response will confirm the successful creation of the case or provide error details if the request fails.</p>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"0290749b-a962-47f3-a3f7-38f920a0e243","name":"Renewal - Audit Now - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": false,\n  \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/cases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:44:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"724"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb119c8ebe5a6504ad89\",\n        \"externalId\": \"145780752-188734989\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"draft\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"managementType\": \"advocateManaged\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:44:48.999Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:44:49.197Z\",\n        \"updatedAt\": \"2025-06-18T17:44:49.197Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null,\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"6d4c575a-0c44-4ee5-9757-4210787af626"},{"name":"Assets","event":[{"listen":"test","script":{"id":"072a97ba-e521-41fb-96c9-e62a9a39ed0f","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('assetIdPostClose', responseData.data.id)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0d20d188-c47c-494b-b50f-2326ee79d086","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","description":"<h2 id=\"api-endpoint-add-asset\">API Endpoint: Add Asset</h2>\n<p>This endpoint allows users to add a new asset to the system. It accepts a POST request that includes detailed information about the asset being added, including its fields, type, lender, and associated case ID.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<p>The request must be sent as a JSON object in the body of the POST request. The expected structure of the request body is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"fields\": [\n    {\n      \"fieldType\": \"string\", // Unique identifier for the field type\n      \"value\": {\n        \"streetAddress\": \"string\", // The street address of the asset\n        \"city\": \"string\", // The city where the asset is located\n        \"postalCode\": \"string\", // The postal code of the asset's location\n        \"state\": \"string\", // The state where the asset is located\n        \"country\": \"string\", // The country where the asset is located\n        \"formattedAddress\": \"string\" // A formatted version of the complete address\n      }\n    }\n  ],\n  \"assetType\": \"string\", // The type of asset being added\n  \"caseId\": \"string\", // The ID of the case associated with the asset\n  \"documents\": [] // An array of documents related to the asset (can be empty)\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful request, the server will respond with a confirmation of the asset addition. The response will typically include the following information:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates the success or failure of the operation.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message regarding the operation's result.</p>\n</li>\n<li><p><strong>assetId</strong>: The unique identifier of the newly added asset.</p>\n</li>\n</ul>\n<p>The exact structure of the response may vary based on the implementation, but it will generally confirm the successful addition of the asset.</p>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Asset added successfully.\",\n  \"assetId\": \"string\" // The unique identifier for the newly created asset\n}\n\n</code></pre>\n<p>Make sure to replace placeholders such as <code></code>, <code></code>, and <code></code> with actual values when making the request.</p>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"19769e8e-fc59-4f1f-85f3-d42ceabbdb54","name":"Assets - Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:45:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb2f9c8ebe5a6504b033\",\n        \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n        \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"128 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:45:19.941Z\",\n        \"updatedAt\": \"2025-06-18T17:45:19.941Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"0d20d188-c47c-494b-b50f-2326ee79d086"},{"name":"Documents sign-urls","event":[{"listen":"test","script":{"id":"149de08f-2898-4e73-9411-db16e4df4854","exec":["const responseData = pm.response.json();","","pm.collectionVariables.set('signedUrl', responseData.data[0].signedUrl)","pm.collectionVariables.set('directUploadKey', responseData.data[0].directUploadKey)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"1e5500e5-a1f4-44f8-a17f-40d66335afa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls","description":"<h2 id=\"endpoint-post-restdocumentssign-urls\">Endpoint: POST /rest/documents/sign-urls</h2>\n<p>This endpoint is used to generate sign URLs for documents that require electronic signatures. By sending a request to this endpoint, users can upload documents and receive URLs that can be used for signing purposes.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request must be sent in JSON format and should include the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"fileName\": \"string\",\n      \"fileType\": \"string\"\n    }\n  ]\n}\n\n</code></pre>\n<ul>\n<li><p><strong>docs</strong>: An array of document objects.</p>\n<ul>\n<li><p><strong>fileName</strong> (string): The name of the document file being uploaded.</p>\n</li>\n<li><p><strong>fileType</strong> (string): The MIME type of the document file (e.g., <code>application/pdf</code> for PDF files).</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request\">Example Request</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will include the generated sign URLs for the documents submitted in the request. The exact structure of the response will depend on the implementation but generally includes:</p>\n<ul>\n<li><strong>signUrls</strong>: An array of URLs corresponding to each document that can be used for signing.</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"signUrls\": [\n    \"https://example.com/sign-url-1\",\n    \"https://example.com/sign-url-2\"\n  ]\n}\n\n</code></pre>\n<p>Ensure that the request body adheres to the specified format to receive the correct response.</p>\n","urlObject":{"path":["rest","documents","sign-urls"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"35226ac7-b412-43cb-ae94-1185076cc778","name":"Documents sign-urls - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:45:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"709"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"fileExt\": \"pdf\",\n            \"directUploadKey\": \"Your direct upload Value\",\n            \"signedUrl\": \"Your signed URL value\"\n        }\n    ]\n}"}],"_postman_id":"1e5500e5-a1f4-44f8-a17f-40d66335afa2"},{"name":"AWS","event":[{"listen":"test","script":{"exec":["pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});",""],"type":"text/javascript","packages":{},"id":"392ce912-13c9-4e03-af28-1c76de560ae8"}}],"id":"9f8ba4d0-ad08-4cee-84a2-f864cdf04047","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"file","file":{"src":"postman-cloud:///1ef1dcbc-a711-4570-973b-8f33a95f04c0"}},"url":"signedUrl","description":"<h2 id=\"update-resource\">Update Resource</h2>\n<p>This endpoint allows you to update a resource at the specified <code>signedUrl</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>Request Body</strong>: The request body is not required for this request; the URL is dynamically generated by the document sign-urls request and should be pasted here as the URL.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the server will return a response indicating the status of the update. The response will typically include:</p>\n<ul>\n<li><p>A status code indicating the success or failure of the operation.</p>\n</li>\n<li><p>Any relevant information about the updated resource.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the necessary permissions to update the resource.</p>\n</li>\n<li><p>The request must be properly formatted according to the API specifications.</p>\n</li>\n<li><p>Check the API documentation for any specific requirements related to the resource being updated.</p>\n</li>\n</ul>\n<p>Make sure to test the endpoint with the appropriate payload to validate the update functionality.</p>\n","urlObject":{"host":["signedUrl"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f8ba4d0-ad08-4cee-84a2-f864cdf04047"},{"name":"Documents","event":[{"listen":"test","script":{"id":"48eadbc9-7b00-4dcd-8cc5-0ae2d32e0032","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"df08dbbd-f859-4499-9562-ce4fa768ee54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h2 id=\"add-document\">Add Document</h2>\n<p>This endpoint allows users to upload documents associated with a case. The request must include a JSON payload containing an array of document objects.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>docs</strong> (Array of Objects): Contains the document details.</p>\n<ul>\n<li><p><strong>name</strong> (String): The name of the document being uploaded.</p>\n</li>\n<li><p><strong>caseId</strong> (String): The unique identifier for the case associated with the document.</p>\n</li>\n<li><p><strong>categoryId</strong> (String): The identifier for the category under which the document falls.</p>\n</li>\n<li><p><strong>fileName</strong> (String): The name of the file being uploaded.</p>\n</li>\n<li><p><strong>fileType</strong> (String): The MIME type of the file (e.g., application/pdf).</p>\n</li>\n<li><p><strong>directUploadKey</strong> (String): A key used for direct upload purposes.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request\">Example Request</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful upload, the API will respond with a confirmation of the document upload. The response typically includes details such as the status of the upload and any identifiers related to the uploaded document.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>caseId</code> and <code>directUploadKey</code> are valid and correspond to the current session or transaction.</p>\n</li>\n<li><p>The file being uploaded must match the specified <code>fileType</code>.</p>\n</li>\n<li><p>This endpoint is designed for bulk uploads; multiple documents can be added in a single request by including more objects in the <code>docs</code> array.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"c88423dc-3dd8-45a8-92ae-5e9d2f2fdc2e","name":"Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:45:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"817"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6852fb4c9c8ebe5a6504b063\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:45:48.922Z\",\n            \"updatedAt\": \"2025-06-18T17:45:48.922Z\",\n            \"url\": \"Your direct upload Value\",\n            \"versions\": [],\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"df08dbbd-f859-4499-9562-ce4fa768ee54"},{"name":"Case id publish","event":[{"listen":"test","script":{"id":"d1d43576-b73c-4558-82bf-e5dc18187dfa","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"f5f6adf1-ca4c-4bd6-9321-0f7b259db308","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish","description":"<h2 id=\"publish-case-audit\">Publish Case Audit</h2>\n<p>This endpoint is used to publish a case audit for a specific case identified by <code>newPostCloseAuditNowCaseId</code>.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases//publish</code></p>\n</li>\n</ul>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<p>The request does not specify any body parameters; however, it is important to ensure that the <code>newPostCloseAuditNowCaseId</code> is correctly provided in the URL path.</p>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the API will return a response indicating the status of the publish operation. The exact structure of the response will depend on the implementation but generally includes:</p>\n<ul>\n<li><p>A success message or confirmation of the published audit.</p>\n</li>\n<li><p>Any relevant details or identifiers related to the published case audit.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the necessary permissions to publish case audits.</p>\n</li>\n<li><p>Validate that the <code>newPostCloseAuditNowCaseId</code> corresponds to an existing case audit before making the request.</p>\n</li>\n<li><p>Handle any potential errors in the response, such as invalid case IDs or permission issues.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","name":"Policy Creation Flow","type":"folder"}},"urlObject":{"path":["rest","cases","","publish"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"5af34307-7129-4051-9b99-16a87602f161","name":"Case id publish - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:45:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"763"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb119c8ebe5a6504ad89\",\n        \"externalId\": \"145780752-188734989\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852fb4c9c8ebe5a6504b063\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:44:48.999Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:44:49.197Z\",\n        \"updatedAt\": \"2025-06-18T17:45:59.896Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"f5f6adf1-ca4c-4bd6-9321-0f7b259db308"},{"name":"Policies Commercial Property","event":[{"listen":"test","script":{"id":"e9713b8b-49e2-4af6-808e-0325b879f4dd","exec":["const responseData = pm.response.json().data;","","pm.test(\"Response status code is 201\", function () {","    pm.response.to.have.status(201);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"21afd2c3-e658-4a8e-8c74-e8ff8b85b211","exec":[""],"type":"text/javascript","packages":{}}}],"id":"09a8c198-dfb1-40b6-8818-940f50a5bc40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\n        \"\"\n    ],\n    \"endDate\": \"2024-12-27\",\n    \"startDate\": \"2024-12-10\",\n    \"productType\": \"\",\n    \"caseId\": \"\",\n    \"assets\": [\n        \"\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/policies","description":"<h2 id=\"add-policy-endpoint\">Add Policy Endpoint</h2>\n<p>This endpoint allows users to create a new policy by submitting relevant details in the request body.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>insuranceContacts</strong> (Array of Strings): A list of insurance contact IDs associated with the policy.</p>\n</li>\n<li><p><strong>endDate</strong> (String): The end date of the policy in the format <code>YYYY-MM-DD</code>.</p>\n</li>\n<li><p><strong>startDate</strong> (String): The start date of the policy in the format <code>YYYY-MM-DD</code>.</p>\n</li>\n<li><p><strong>policyNumber</strong>(String): Policy Number of the policy.</p>\n</li>\n<li><p><strong>productType</strong> (String): The type of product for the policy.</p>\n</li>\n<li><p><strong>caseId</strong> (String): The ID of the case associated with the policy.</p>\n</li>\n<li><p><strong>assets</strong> (Array of Strings): A list of asset IDs linked to the policy.</p>\n</li>\n<li><p><strong>productType</strong> (String): Unique id of the product type</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the server will respond with a confirmation of the policy creation. The response typically includes details about the newly created policy, such as its unique identifier and status.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that all date fields are formatted correctly to avoid validation errors.</p>\n</li>\n<li><p>The <code>insuranceContacts</code> and <code>assets</code> fields should contain valid IDs that exist in the system.</p>\n</li>\n<li><p>The <code>productType</code> must correspond to an available product in your account.</p>\n</li>\n</ul>\n<p>Make sure to validate all inputs before making the request to ensure a smooth policy creation process.</p>\n","urlObject":{"path":["rest","policies"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"97711cf9-5cd9-44aa-a7d5-c1e747ddf9cb","name":"Policies Commercial Property - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\n        \"\"\n    ],\n    \"endDate\": \"2024-12-27\",\n    \"startDate\": \"2024-12-10\",\n    \"productType\": \"\",\n    \"caseId\": \"\",\n    \"assets\": [\n        \"\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:46:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"953"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb619c8ebe5a6504b83f\",\n        \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n        \"broker\": null,\n        \"startDate\": \"2024-12-10T00:00:00.000Z\",\n        \"endDate\": \"2024-12-27T00:00:00.000Z\",\n        \"status\": \"advocateReviewingCompliance\",\n        \"score\": {\n            \"passing\": 0,\n            \"total\": 0\n        },\n        \"assets\": [\n            \"6852fb2f9c8ebe5a6504b033\"\n        ],\n        \"perilsByAsset\": [\n            {\n                \"asset\": \"6852fb2f9c8ebe5a6504b033\",\n                \"perils\": [\n                    {\n                        \"id\": \"653633033ee3a40016d5f532\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f537\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f536\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f53e\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f53f\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f546\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f534\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f538\"\n                    }\n                ]\n            }\n        ],\n        \"insured\": [],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"productType\": {\n            \"id\": \"637674b3bdddd70013909fff\"\n        },\n        \"transitions\": [],\n        \"escalationType\": null,\n        \"waiverStatus\": null,\n        \"policyStructure\": \"trueScheduled\",\n        \"carrier\": null,\n        \"createdAt\": \"2025-06-18T17:46:09.279Z\",\n        \"updatedAt\": \"2025-06-18T17:46:09.542Z\",\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null\n    }\n}"}],"_postman_id":"09a8c198-dfb1-40b6-8818-940f50a5bc40"}],"id":"54f9cb83-df7d-438f-adb4-2e4e0027af34","description":"<p>The last request in this folder is responsible for policy creation.</p>\n","_postman_id":"54f9cb83-df7d-438f-adb4-2e4e0027af34","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","name":"Policy Creation Flow","type":"folder"}}},{"name":"Renewal - Future Renewal 2 Assets","item":[{"name":"Renewal - Future Renewal","event":[{"listen":"test","script":{"id":"014b0b42-fedf-4266-b215-3e2a043e30e8","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('newPostCloseRenewalCaseId', responseData.data.id)","pm.collectionVariables.set('externalId', responseData.data.externalId)","pm.collectionVariables.set('multiAssetsProgramId', responseData.data.program)","pm.collectionVariables.set('certificateHolderId', responseData.data.certificateHolders)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});","",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"49891cbe-172b-454a-a77d-c4b7f55f8e61","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomCaseId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b4cbbaaf-1a2c-4a39-9cfa-901b024a5974","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"tenor\": 99,\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"managementType\": \"advocateManaged\",\n  \"isEscrow\": true,\n  \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n \"expectedMaturingAt\": \"2025-01-03T10:15:24.282Z\",\n \"complianceReview\": FUTURE\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint allows users to create a new case record. It is designed to accept case details and process them accordingly.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases</code></p>\n</li>\n</ul>\n<p><strong>Request Body</strong>: The request body must be in JSON format and should include the following:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>name</code> (string): Name of your case,</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., <code>renewal</code>.</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>managementType</code> (string): <code>advocateManaged</code>, <code>selfManaged</code></p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date (Optional)</p>\n</li>\n<li><p><code>expectedMaturingAt</code> (date): expectedMaturingAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): <code>future</code> only for future renewal cases</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response from this endpoint will typically include details about the newly created case record.</p>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"fc631940-ef3c-4546-8cfb-9f0c9791a441","name":"Renewal - Future Renewal - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"tenor\": 99,\n  \"type\": \"renewal\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": true,\n  \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n \"expectedMaturingAt\": \"2025-01-03T10:15:24.282Z\",\n \"complianceReview\": FUTURE\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/cases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:46:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"636"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb899c8ebe5a6504c0ea\",\n        \"externalId\": \"632027995-916578943\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n        \"tenor\": 99,\n        \"type\": \"renewal\",\n        \"status\": \"draft\",\n        \"isEscrow\": true,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"managementType\": \"advocateManaged\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"expectedMaturingAt\": \"2025-07-18T17:46:49.036Z\",\n        \"complianceReview\": FUTURE,\n        \"createdAt\": \"2025-06-18T17:46:49.239Z\",\n        \"updatedAt\": \"2025-06-18T17:46:49.239Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null,\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"b4cbbaaf-1a2c-4a39-9cfa-901b024a5974"},{"name":"1st Assets","event":[{"listen":"test","script":{"id":"11a4b153-485c-468f-9324-534c27165b14","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('firstAssetIdPostClose', responseData.data.id)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Response data types are correct\", function () {","    pm.expect(responseData.data.id).to.be.a('string')","    pm.expect(responseData.data.caseId).to.be.a('string')","    pm.expect(responseData.data.displayName).to.be.a('string')","    pm.expect(responseData.data.assetType).to.be.a('string')","    pm.expect(responseData.data.fields).to.be.a('array')","    pm.expect(responseData.data.fields[0].fieldType).to.be.a('string')","    pm.expect(responseData.data.fields[0].key).to.be.a('string')","    pm.expect(responseData.data.fields[0].label).to.be.a('string')","","    pm.expect(responseData.data.fields[0].value.streetAddress).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.city).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.postalCode).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.state).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.country).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.formattedAddress).to.be.a('string')","","    pm.expect(responseData.data.fields[1].fieldType).to.be.a('string')","    pm.expect(responseData.data.fields[1].key).to.be.a('string')","    pm.expect(responseData.data.fields[1].label).to.be.a('string')","    pm.expect(responseData.data.fields[1].value).to.be.a('number')","});","","pm.test(\"Response returns proper values\", function () {","    pm.expect(responseData.data.fields[0].fieldType).equal(\"608701fdf2e8e800041efe21\")","    pm.expect(responseData.data.fields[0].key).equal(\"address\")","    pm.expect(responseData.data.fields[0].label).equal('Address')","    pm.expect(responseData.data.fields[0].value.streetAddress).equal(\"128 Wooster Street\")","    pm.expect(responseData.data.fields[0].value.city).equal(\"New York\")","    pm.expect(responseData.data.fields[0].value.postalCode).equal(\"10012\")","    pm.expect(responseData.data.fields[0].value.state).equal(\"NY\")","    pm.expect(responseData.data.fields[0].value.country).equal(\"United States\")","    pm.expect(responseData.data.fields[0].value.formattedAddress).equal(\"128 Wooster Street,New York,NY,10012\")","});","","pm.test(\"Response 'documents' field is either undefined or an array\", function () {","    pm.expect(responseData.data).to.have.property('documents');","    const documents = responseData.data.documents;","    pm.expect(documents).to.satisfy((value) => {","        return value === undefined || Array.isArray(value);","    }, \"'documents' should be either undefined or an array\");","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"3c45536c-fbd0-4608-947d-8f03d570e659","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a5c2c942-54d1-4e69-9d46-5c1ae6d27522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"56dadd86-632a-4f44-845c-b17180673e11","name":"1st Assets - Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:46:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb8e9c8ebe5a6504c394\",\n        \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n        \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"128 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:46:54.990Z\",\n        \"updatedAt\": \"2025-06-18T17:46:54.990Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"a5c2c942-54d1-4e69-9d46-5c1ae6d27522"},{"name":"2nd Assets","event":[{"listen":"test","script":{"id":"243ab4a5-97d4-480b-acab-79ce3c96a707","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('secondAssetIdPostClose', responseData.data.id)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Response data types are correct\", function () {","    pm.expect(responseData.data.id).to.be.a('string')","    pm.expect(responseData.data.caseId).to.be.a('string')","    pm.expect(responseData.data.displayName).to.be.a('string')","    pm.expect(responseData.data.assetType).to.be.a('string')","    pm.expect(responseData.data.fields).to.be.a('array')","    pm.expect(responseData.data.fields[0].fieldType).to.be.a('string')","    pm.expect(responseData.data.fields[0].key).to.be.a('string')","    pm.expect(responseData.data.fields[0].label).to.be.a('string')","","    pm.expect(responseData.data.fields[0].value.streetAddress).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.city).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.postalCode).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.state).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.country).to.be.a('string')","    pm.expect(responseData.data.fields[0].value.formattedAddress).to.be.a('string')","","    pm.expect(responseData.data.fields[1].fieldType).to.be.a('string')","    pm.expect(responseData.data.fields[1].key).to.be.a('string')","    pm.expect(responseData.data.fields[1].label).to.be.a('string')","    pm.expect(responseData.data.fields[1].value).to.be.a('number')","});","","pm.test(\"Response returns proper values\", function () {","    pm.expect(responseData.data.fields[0].fieldType).equal(\"608701fdf2e8e800041efe21\")","    pm.expect(responseData.data.fields[0].key).equal(\"address\")","    pm.expect(responseData.data.fields[0].label).equal('Address')","    pm.expect(responseData.data.fields[0].value.streetAddress).equal(\"138 Wooster Street\")","    pm.expect(responseData.data.fields[0].value.city).equal(\"New York\")","    pm.expect(responseData.data.fields[0].value.postalCode).equal(\"10012\")","    pm.expect(responseData.data.fields[0].value.state).equal(\"NY\")","    pm.expect(responseData.data.fields[0].value.country).equal(\"United States\")","    pm.expect(responseData.data.fields[0].value.formattedAddress).equal(\"138 Wooster Street,New York,NY,10012\")","});","","pm.test(\"Response 'documents' field is either undefined or an array\", function () {","    pm.expect(responseData.data).to.have.property('documents');","    const documents = responseData.data.documents;","    pm.expect(documents).to.satisfy((value) => {","        return value === undefined || Array.isArray(value);","    }, \"'documents' should be either undefined or an array\");","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"eeb33bf3-bddb-4ef0-8723-76445f36f595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"138 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"138 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"e3d67907-ac1b-4864-abcb-8e12facf7512","name":"2nd Assets - Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"138 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"138 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:47:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"44"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb9f9c8ebe5a6504c653\",\n        \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n        \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"138 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:47:11.532Z\",\n        \"updatedAt\": \"2025-06-18T17:47:11.532Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"eeb33bf3-bddb-4ef0-8723-76445f36f595"},{"name":"Documents sign-urls","event":[{"listen":"test","script":{"id":"16eda972-44ab-486f-b639-582ff986b4d1","exec":["const responseData = pm.response.json();","","pm.collectionVariables.set('signedUrl', responseData.data[0].signedUrl)","pm.collectionVariables.set('directUploadKey', responseData.data[0].directUploadKey)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});"],"type":"text/javascript","packages":{}}}],"id":"d32d2d35-9b9a-4e4f-8bc9-d6e070e1f374","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.png\",\n            \"fileType\": \"image/png\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls","urlObject":{"path":["rest","documents","sign-urls"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"d2846a2f-ba5b-4c10-995b-3a89dc92d655","name":"Documents sign-urls - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.png\",\n            \"fileType\": \"image/png\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:47:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"703"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fileName\": \"filename.png\",\n            \"fileType\": \"image/png\",\n            \"fileExt\": \"png\",\n            \"directUploadKey\": \"Your direct upload Value\",\n            \"signedUrl\": \"Your signed URL value\"\n        }\n    ]\n}"}],"_postman_id":"d32d2d35-9b9a-4e4f-8bc9-d6e070e1f374"},{"name":"AWS","id":"35fc513a-43a4-4c10-a6b4-259e01544737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"file","file":{"src":"postman-cloud:///1ef0e28e-2952-42c0-bb4e-2be7e5b54189"}},"url":"signedUrl","urlObject":{"host":["signedUrl"],"query":[],"variable":[]}},"response":[],"_postman_id":"35fc513a-43a4-4c10-a6b4-259e01544737"},{"name":"Documents","event":[{"listen":"test","script":{"id":"1a8d597b-33d1-4eb3-a5f8-1155902bdbb9","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});"],"type":"text/javascript","packages":{}}}],"id":"3909153b-8b8b-4304-8889-41dc3b6438b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"3f024fca-1a4f-4097-8211-d38c4c06b513","name":"Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"profile.jpeg\",\n      \"fileType\": \"image/jpeg\",\n      \"directUploadKey\": \"directUploadKey\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:47:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"814"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"54"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6852fbc19c8ebe5a6504c6ab\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:47:45.423Z\",\n            \"updatedAt\": \"2025-06-18T17:47:45.423Z\",\n            \"url\": \"Your direct upload Value\",\n            \"versions\": [],\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"3909153b-8b8b-4304-8889-41dc3b6438b9"},{"name":"Case id publish","event":[{"listen":"test","script":{"id":"22319f9b-60d1-4253-83c5-bdd447fda126","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Case status is correct\", function () {","    pm.expect(responseData.data.status).equal(\"OPEN\")","});",""],"type":"text/javascript","packages":{}}}],"id":"a02da769-6140-41ac-a848-f52225473d12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","name":"Policy Creation Flow","type":"folder"}},"urlObject":{"path":["rest","cases","","publish"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"13f37848-0026-44ec-b6ad-06a014d2c7d5","name":"Case id publish - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases//publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:47:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"683"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb899c8ebe5a6504c0ea\",\n        \"externalId\": \"632027995-916578943\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n        \"tenor\": 99,\n        \"type\": \"renewal\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": true,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852fbc19c8ebe5a6504c6ab\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"expectedMaturingAt\": \"2025-07-18T17:46:49.036Z\",\n        \"complianceReview\": FUTURE,\n        \"createdAt\": \"2025-06-18T17:46:49.239Z\",\n        \"updatedAt\": \"2025-06-18T17:47:56.051Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"a02da769-6140-41ac-a848-f52225473d12"},{"name":"Policies Quotes PolicyNo","event":[{"listen":"test","script":{"id":"3be732ae-b3d1-42fa-b180-268e48d7a22c","exec":["const responseData = pm.response.json().data;","pm.collectionVariables.set('policyIdQuotes', responseData.id);","const productType = pm.collectionVariables.get('quotesPolicy')","const firstAsset=pm.collectionVariables.get('firstAssetIdPostClose')","const secondAsset=pm.collectionVariables.get('secondAssetIdPostClose')","","pm.test(\"Response status code is 201\", function () {","    pm.response.to.have.status(201);","});","","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Response returns proper policy values\", function () {","    pm.expect(responseData.caseId).to.exist;","    pm.expect(responseData.assets).to.be.an(\"array\").that.includes.members([","        firstAsset,","        secondAsset","    ]);","","    pm.expect(responseData.productType.id).to.equal(productType);","    pm.expect(responseData.broker).to.be.null;","    pm.expect(responseData.policyNumber).to.equal(\"Policy Quotes PostClose Renewal\");","    pm.expect(responseData.startDate).to.exist;","    pm.expect(responseData.endDate).to.exist;","    pm.expect(responseData.score.passing).to.equal(0);","    pm.expect(responseData.score.total).to.equal(0);      ","    pm.expect(responseData.status).to.equal(\"APPROVED\");","    pm.expect(responseData).to.have.property(\"perilsByAsset\");","    pm.expect(responseData.policyStructure).to.equal(\"trueScheduled\");","});",""],"type":"text/javascript","packages":{}}}],"id":"3676aefd-10d3-434e-9ed1-0202d186eb60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\n        \"\"\n    ],\n    \"endDate\": \"2024-12-27\",\n    \"startDate\": \"2024-12-10\",\n    \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n    \"productType\": \"\", \n    \"caseId\": \"\",\n    \"assets\": [\n        \"\",\"\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/policies","description":"<h2 id=\"endpoint-description\">Endpoint Description</h2>\n<p>This endpoint allows users to create or update a policy by submitting relevant details through a POST request. The request is designed to handle policy-related information, including contact details, dates, and product types.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>insuranceContacts</strong> (Array of Strings): A list of insurance contact IDs associated with the policy.</p>\n</li>\n<li><p><strong>endDate</strong> (String): The end date of the policy in the format <code>YYYY-MM-DD</code>.</p>\n</li>\n<li><p><strong>startDate</strong> (String): The start date of the policy in the format <code>YYYY-MM-DD</code>.</p>\n</li>\n<li><p><strong>policyNumber</strong>(String): Policy Number of the policy.</p>\n</li>\n<li><p><strong>caseId</strong> (String): The ID of the case associated with the policy.</p>\n</li>\n<li><p><strong>assets</strong> (Array of Strings): A list of asset IDs linked to the policy.</p>\n</li>\n<li><p><strong>productType</strong> (String): Unique id of the product type</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response from this endpoint will typically include the details of the created or updated policy, confirming the successful operation. The exact structure of the response may vary but generally includes:</p>\n<ul>\n<li><p><strong>status</strong> (string): Indicates the success or failure of the request.</p>\n</li>\n<li><p><strong>message</strong> (string): Provides additional information about the operation.</p>\n</li>\n<li><p><strong>policyDetails</strong> (object): Contains the details of the policy that was created or updated, mirroring the request body structure.</p>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"insuranceContacts\": [\"\"],\n  \"endDate\": \"2024-12-27\",\n  \"startDate\": \"2024-12-10\",\n  \"policyNumber\": \"Policy Quotes PostClose Renewa ...\",\n  \"productType\": \"\",\n  \"caseId\": \"\",\n  \"assets\": [\"\"]\n}\n\n</code></pre>\n<p>This endpoint is crucial for managing policy information effectively within the application.</p>\n","urlObject":{"path":["rest","policies"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"999b19fa-bfe3-4c1f-b440-deb7b42fa8db","name":"Policies Quotes PolicyNo  - Responses","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\n        \"\"\n    ],\n    \"endDate\": \"2024-12-27\",\n    \"startDate\": \"2024-12-10\",\n    \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n    \"productType\": \"\", \n    \"caseId\": \"\",\n    \"assets\": [\n        \"\",\"\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/policies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:22:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1194"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685304019c8ebe5a6504d7df\",\n        \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n        \"broker\": null,\n        \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n        \"startDate\": \"2024-12-10T00:00:00.000Z\",\n        \"endDate\": \"2024-12-27T00:00:00.000Z\",\n        \"status\": \"APPROVED\",\n        \"score\": {\n            \"passing\": 0,\n            \"total\": 0\n        },\n        \"assets\": [\n            \"6852fb8e9c8ebe5a6504c394\",\n            \"6852fb9f9c8ebe5a6504c653\"\n        ],\n        \"perilsByAsset\": [\n            {\n                \"asset\": \"6852fb8e9c8ebe5a6504c394\",\n                \"perils\": [\n                    {\n                        \"id\": \"653633033ee3a40016d5f532\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f537\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f536\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f546\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f534\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f538\"\n                    }\n                ]\n            },\n            {\n                \"asset\": \"6852fb9f9c8ebe5a6504c653\",\n                \"perils\": [\n                    {\n                        \"id\": \"653633033ee3a40016d5f532\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f537\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f536\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f546\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f534\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f538\"\n                    }\n                ]\n            }\n        ],\n        \"insured\": [],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"productType\": {\n            \"id\": \"63767180bdddd70013909ad5\"\n        },\n        \"transitions\": [],\n        \"escalationType\": null,\n        \"waiverStatus\": null,\n        \"policyStructure\": \"trueScheduled\",\n        \"carrier\": null,\n        \"createdAt\": \"2025-06-18T18:22:57.059Z\",\n        \"updatedAt\": \"2025-06-18T18:22:57.732Z\",\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null\n    }\n}"}],"_postman_id":"3676aefd-10d3-434e-9ed1-0202d186eb60"}],"id":"dd7b8bb5-63e1-48bf-980c-7f141810450d","description":"<p>The last request in this folder is responsible for policy creation.</p>\n","_postman_id":"dd7b8bb5-63e1-48bf-980c-7f141810450d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","name":"Policy Creation Flow","type":"folder"}}}],"id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852","description":"<p>In order to create a policy, you need to assign it to a specific case. Currently, you can only associate a policy with a renewal-type case.</p>\n<p>Here you can find the full flow together with case creation.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"_postman_id":"ca23e75c-5077-4c2b-b4ba-65a0d0ec5852"},{"name":"Policy Edit Flow","item":[{"name":"Policies Get Policy ID","event":[{"listen":"test","script":{"id":"f8567950-7d50-43bf-8535-8d043e107319","exec":["const responseData = pm.response.json();","","if (responseData.data) {","    for (let item of responseData.data) {","        if (item.status !== 'approved' && item.status !== 'deactivated') {","            console.log('SAVED LOAN ID = ' + item.caseId)","            pm.collectionVariables.set('caseIdWithPolicy', item.caseId)","            console.log('SAVED POLICY ID = ' + item.id)","            pm.collectionVariables.set('policyId', item.id)","            break;","        }","     }","}","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"f383bd66-448d-4b97-b5f1-b88060cbdf12","exec":[""],"type":"text/javascript","packages":{}}}],"id":"1f0a4137-81c5-452d-a710-c69e36209c1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/policies","description":"<h2 id=\"get-policies\">Get Policies</h2>\n<p>This endpoint retrieves a list of policies from the server. It is a <strong>GET</strong> request to the <code>https://api-v2-test.tryadvocate.com/rest/policies</code> URL.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>This endpoint does not require any request parameters.</p>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>The response will contain a JSON object that includes an array of policy objects. Each policy object may contain the following fields:</p>\n<ul>\n<li><p><code>id</code>: Unique identifier for the policy.</p>\n</li>\n<li><p><code>name</code>: Name of the policy.</p>\n</li>\n<li><p><code>description</code>: A brief description of the policy.</p>\n</li>\n<li><p><code>created_at</code>: Timestamp indicating when the policy was created.</p>\n</li>\n<li><p><code>updated_at</code>: Timestamp indicating when the policy was last updated.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the necessary permissions to access the policies.</p>\n</li>\n<li><p>The response may vary based on the user's access level and the policies available in the system.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","policies"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"263593ba-0cd7-4ff8-9a93-fcb614e47304","name":"Policies Get Policy ID - Response","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text","disabled":true}],"url":"https://api-v2-test.tryadvocate.com/rest/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:23:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25423"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 64,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"685304019c8ebe5a6504d7df\",\n            \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"6852fb8e9c8ebe5a6504c394\",\n                \"6852fb9f9c8ebe5a6504c653\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb8e9c8ebe5a6504c394\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"6852fb9f9c8ebe5a6504c653\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-18T18:22:57.546Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-18T18:22:57.059Z\",\n            \"updatedAt\": \"2025-06-18T18:22:58.590Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"6852fb619c8ebe5a6504b83f\",\n            \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"6852fb2f9c8ebe5a6504b033\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb2f9c8ebe5a6504b033\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-18T17:46:09.305Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-18T17:46:09.279Z\",\n            \"updatedAt\": \"2025-06-18T17:46:10.561Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"6852f1769c8ebe5a650484d6\",\n            \"caseId\": \"6852f1729c8ebe5a65047414\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"6852f1739c8ebe5a650476be\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852f1739c8ebe5a650476be\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-18T17:03:50.649Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-18T17:03:50.620Z\",\n            \"updatedAt\": \"2025-06-18T17:03:51.943Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"684aab24d6a91c15ef16d066\",\n            \"caseId\": \"684aab21d6a91c15ef16c5b0\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"684aab22d6a91c15ef16c85a\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684aab22d6a91c15ef16c85a\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684ad46bd6a91c15ef29584c\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-12T10:25:40.537Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-12T10:25:40.491Z\",\n            \"updatedAt\": \"2025-06-12T13:22:02.404Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"684a3a52084a00665f5a4dd8\",\n            \"caseId\": \"684a3a4f084a00665f5a4322\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"684a3a4f084a00665f5a45cc\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684a3a4f084a00665f5a45cc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684a42dc084a00665f6b6afc\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-12T02:24:18.221Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-12T02:24:18.188Z\",\n            \"updatedAt\": \"2025-06-12T03:00:45.907Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"684999b3084a00665f59ada9\",\n            \"caseId\": \"684999af084a00665f599d1d\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"684999b0084a00665f599fc7\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684999b0084a00665f599fc7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684a3a47084a00665f5a3747\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T14:58:59.790Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T14:58:59.758Z\",\n            \"updatedAt\": \"2025-06-12T02:24:08.954Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"68499827084a00665f5943bf\",\n            \"caseId\": \"68499823084a00665f592d81\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68499823084a00665f59302b\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499823084a00665f59302b\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68499836084a00665f59679f\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T14:52:23.483Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T14:52:23.458Z\",\n            \"updatedAt\": \"2025-06-11T14:52:39.760Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"6849951a084a00665f4a6d4e\",\n            \"caseId\": \"6849950f084a00665f4a2efb\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68499511084a00665f4a3423\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499511084a00665f4a3423\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"6849954f084a00665f4b716a\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T14:39:22.658Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T14:39:22.281Z\",\n            \"updatedAt\": \"2025-06-11T14:40:19.202Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"68497fd4a0b0d30e2c551ce8\",\n            \"caseId\": \"68497fc1a0b0d30e2c54a6ce\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497fc4a0b0d30e2c54b7d0\",\n                \"68497fc8a0b0d30e2c54d389\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fc4a0b0d30e2c54b7d0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497fc8a0b0d30e2c54d389\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T13:08:36.636Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T13:08:36.098Z\",\n            \"updatedAt\": \"2025-06-11T13:08:39.613Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497fbaa0b0d30e2c5483f5\",\n            \"caseId\": \"68497fafa0b0d30e2c544d81\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 1,\n                \"total\": 57\n            },\n            \"assets\": [\n                \"68497fb1a0b0d30e2c545287\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fb1a0b0d30e2c545287\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68498e89a0b0d30e2c68b0e9\"\n            ],\n            \"productType\": {\n                \"id\": \"637673b0bdddd70013909ede\",\n                \"key\": \"boilerAndMachineryEquipmentBreakdownCoverage03O0TmTfaW\",\n                \"name\": \"Boiler and Machinery / Equipment Breakdown Policy\",\n                \"pathName\": \"Commercial Lines > Property Policy > Single-Peril Policy > Boiler and Machinery / Equipment Breakdown Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T13:08:12.891Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T13:08:10.867Z\",\n            \"updatedAt\": \"2025-06-11T14:22:25.779Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"68497c231c67c221e8bcf115\",\n            \"caseId\": \"68497bfe1c67c221e8bb86c1\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497c021c67c221e8bb96a0\",\n                \"68497c081c67c221e8bbd235\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497c021c67c221e8bb96a0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c081c67c221e8bbd235\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:52.043Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:51.325Z\",\n            \"updatedAt\": \"2025-06-11T12:52:59.436Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c161c67c221e8bc56c0\",\n            \"caseId\": \"68497bf61c67c221e8bb4604\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bfd1c67c221e8bb82f7\",\n                \"68497c001c67c221e8bb8ed5\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb82f7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c001c67c221e8bb8ed5\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:39.829Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:38.091Z\",\n            \"updatedAt\": \"2025-06-11T12:52:52.207Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c141c67c221e8bc46bf\",\n            \"caseId\": \"68497bee1c67c221e8bb0e73\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bf61c67c221e8bb4111\",\n                \"68497bfd1c67c221e8bb80a8\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf61c67c221e8bb4111\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb80a8\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:37.138Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:36.623Z\",\n            \"updatedAt\": \"2025-06-11T12:52:52.057Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c131c67c221e8bc3ad0\",\n            \"caseId\": \"68497bef1c67c221e8bb11f4\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bf71c67c221e8bb4bcc\",\n                \"68497bfd1c67c221e8bb8461\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf71c67c221e8bb4bcc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb8461\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:35.500Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:35.146Z\",\n            \"updatedAt\": \"2025-06-11T12:52:49.439Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c121c67c221e8bc32f5\",\n            \"caseId\": \"68497bf01c67c221e8bb17b6\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bf81c67c221e8bb51a4\",\n                \"68497bfe1c67c221e8bb8673\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf81c67c221e8bb51a4\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfe1c67c221e8bb8673\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:35.237Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:34.513Z\",\n            \"updatedAt\": \"2025-06-11T12:52:49.088Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        }\n    ]\n}"}],"_postman_id":"1f0a4137-81c5-452d-a710-c69e36209c1a"},{"name":"Insurance Contact - Create IC For Policy","event":[{"listen":"test","script":{"id":"3d8cd97e-1253-41d9-9388-3045bb14d329","exec":["const jsonData = pm.response.json().data;","pm.collectionVariables.set('policyInsuranceContactID', jsonData.id)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"60aac1b4-48a2-49ca-a5cc-596a0a178e40","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBrokerICNumber', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"4aa33c95-d5b8-49f0-a688-c816e99ab011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131-Policy\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamepolicy+853947811-667789131@tryadvocate.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts","description":"<h2 id=\"add-insurance-contact\">Add Insurance Contact</h2>\n<p>This endpoint allows users to add a new insurance contact to the system. The request must include details about the contact, such as their name, type, and email address.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insurance-contacts</code></p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the insurance contact. This should be a descriptive name representing the contact.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the contact. For example, this could be \"broker\", \"agent\", etc.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the contact. This should be a valid email format.</p>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"BrokerName{{randomBrokerICNumb}}\",\n  \"type\": \"broker\",\n  \"email\": \"brokernamepolicy+{{randomBroke}}\"\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successful creation of the insurance contact, the API will return a response containing the details of the newly created contact. The response will typically include:</p>\n<ul>\n<li><p><strong>id</strong> (string): A unique identifier for the newly created contact.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the contact as provided in the request.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of contact as specified in the request.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the contact.</p>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"unique_contact_id\",\n  \"name\": \"BrokerName{{randomBrokerICNumb}}\",\n  \"type\": \"broker\",\n  \"email\": \"brokernamepolicy+{{randomBroke}}\"\n}\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that all required fields are provided in the request body.</p>\n</li>\n<li><p>The email must be valid to avoid errors during the creation process.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insurance-contacts"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"4bf97e67-0abf-4d83-b056-c62b9b96f3f0","name":"Insurance Contact - Create IC For Policy - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131-Policy\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamepolicy+853947811-667789131@tryadvocate.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:24:18 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"259"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"43"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685304529c8ebe5a6504e27d\",\n        \"name\": \"BrokerName806070415-396937629-Policy\",\n        \"type\": \"broker\",\n        \"email\": \"brokernamepolicy+806070415-396937629@tryadvocate.com\",\n        \"createdAt\": \"2025-06-18T18:24:18.824Z\",\n        \"updatedAt\": \"2025-06-18T18:24:18.824Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"4aa33c95-d5b8-49f0-a688-c816e99ab011"},{"name":"Cases - Update a case by IC","event":[{"listen":"test","script":{"id":"415343a0-abed-4b83-a980-b9b6256473da","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"9330c57f-1666-467b-93e0-c80ab2cae43f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\"67502398bc0b293e7c24e773\"] \n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/674993c53eb1c51bcae4d905","description":"<h2 id=\"patch-restcasescaseidwithpolicy\">PATCH /rest/cases/674993c53eb1c51bcae4d905</h2>\n<p>This endpoint allows you to update the details of a specific case identified by <code>caseIdWithPolicy</code>. The primary purpose of this request is to modify the case's insurance contacts by providing an updated list of contact IDs.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request body should be in JSON format and must include the following key:</p>\n<ul>\n<li><strong>insuranceContacts</strong>: An array of strings representing the IDs of the insurance contacts associated with the case. Each ID should correspond to a valid contact in the system.</li>\n</ul>\n<h4 id=\"example-request-body\">Example Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"insuranceContacts\": [\"67502398bc0b293e7c24e773\"]\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful update, the response will typically include the updated case details. The structure of the response may include the following fields (exact fields may vary based on implementation):</p>\n<ul>\n<li><p><strong>caseId</strong>: The unique identifier for the case.</p>\n</li>\n<li><p><strong>insuranceContacts</strong>: The updated list of insurance contact IDs associated with the case.</p>\n</li>\n<li><p><strong>status</strong>: The current status of the case.</p>\n</li>\n</ul>\n<p>Ensure that you handle any errors appropriately, as the response may also include error messages if the request fails due to validation issues or if the specified case does not exist.</p>\n<p>This endpoint is crucial for maintaining accurate and up-to-date information regarding insurance contacts linked to cases.</p>\n","urlObject":{"path":["rest","cases","674993c53eb1c51bcae4d905"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"4c61aac6-a1e7-44d7-95d5-14096f99ae7f","name":"Cases - Update a case by IC  - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\"67502398bc0b293e7c24e773\"] \n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/674993c53eb1c51bcae4d905"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:24:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"763"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb119c8ebe5a6504ad89\",\n        \"externalId\": \"145780752-188734989\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852fb4c9c8ebe5a6504b063\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"685304529c8ebe5a6504e27d\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:44:48.999Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:44:49.197Z\",\n        \"updatedAt\": \"2025-06-18T18:24:28.197Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"9330c57f-1666-467b-93e0-c80ab2cae43f"},{"name":"Cases Check if IC is added to the case","event":[{"listen":"test","script":{"id":"b76ce669-4431-44f8-8a58-61cc603e4bc3","exec":["const responseData = pm.response.json();","const insuranceContactId = pm.collectionVariables.get('policyInsuranceContactID')","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"9a68e2de-4c1b-412b-bd5e-40691603fd53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/674993c53eb1c51bcae4d905","description":"<h2 id=\"get-case-details\">Get Case Details</h2>\n<p>This endpoint retrieves the details of a specific case using its unique identifier.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases/674993c53eb1c51bcae4d905</code></p>\n</li>\n</ul>\n<h3 id=\"parameters\">Parameters</h3>\n<ul>\n<li><strong>caseIdWithPolicy</strong> (path parameter): The unique identifier for the case, which may include associated policy information.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain the details of the case in a structured format. The expected response format is typically JSON, containing various properties related to the case, such as the case amount, interest rate, and repayment schedule.</p>\n<h3 id=\"example-response-structure\">Example Response Structure</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"caseId\": \"string\",\n  \"amount\": \"number\",\n  \"interestRate\": \"number\",\n  \"repaymentSchedule\": \"object\"\n}\n\n</code></pre>\n<p>Ensure that the <code>caseIdWithPolicy</code> is correctly specified to retrieve the desired case details.</p>\n","urlObject":{"path":["rest","cases","674993c53eb1c51bcae4d905"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"d62481f5-d81c-4ebf-9328-9c5c56e53740","name":"Cases Check if IC is added to the case  - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases/674993c53eb1c51bcae4d905"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:24:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"763"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb119c8ebe5a6504ad89\",\n        \"externalId\": \"145780752-188734989\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852fb4c9c8ebe5a6504b063\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"685304529c8ebe5a6504e27d\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:44:48.999Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:44:49.197Z\",\n        \"updatedAt\": \"2025-06-18T18:24:28.197Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"9a68e2de-4c1b-412b-bd5e-40691603fd53"},{"name":"Policies - Update Policy - IC  - Response","event":[{"listen":"test","script":{"id":"9578acb4-26c0-4653-97c4-490415c11df7","exec":["const responseData = pm.response.json().data;","","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"334c90a9-5ccb-480a-a02a-4215f1a05d33","exec":["const insuranceContactId = pm.collectionVariables.get('policyInsuranceContactID') ",""],"type":"text/javascript","packages":{}}}],"id":"26490e2b-867f-4c5e-a448-80fe50ebc985","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\"67502398bc0b293e7c24e773\"]\n}\n\n","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/policies/674ec06ff814711c99d02e74","description":"<h3 id=\"patch-restpoliciespolicyid\">PATCH /rest/policies/674ec06ff814711c99d02e74</h3>\n<p>This endpoint allows you to update the insurance contacts associated with a specific policy identified by <code>policyId</code>. By sending a PATCH request, you can modify the existing information without needing to replace the entire policy resource.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body should be in JSON format and must include the following parameter:</p>\n<ul>\n<li><strong>insuranceContacts</strong> (Array of Strings): This parameter is used to specify the IDs of the insurance contacts you want to associate with the policy. You can include one or more contact IDs in this array.</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"insuranceContacts\": [\"67502398bc0b293e7c24e773\"]\n}\n\n</code></pre>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>Upon a successful request, the API will return a response indicating the status of the update operation. The structure of the response typically includes:</p>\n<ul>\n<li><p><strong>status</strong> (String): Indicates whether the update was successful (e.g., \"success\" or \"failure\").</p>\n</li>\n<li><p><strong>message</strong> (String): A descriptive message regarding the result of the operation.</p>\n</li>\n<li><p><strong>updatedPolicy</strong> (Object): Contains the updated policy details, including the new list of associated insurance contacts.</p>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Policy updated successfully.\",\n  \"updatedPolicy\": {\n    \"policyId\": \"674ec06ff814711c99d02e74\",\n    \"insuranceContacts\": [\"67502398bc0b293e7c24e773\"]\n  }\n}\n\n</code></pre>\n<p>Make sure to replace placeholders with actual values when making a request.</p>\n","urlObject":{"path":["rest","policies","674ec06ff814711c99d02e74"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"26490e2b-867f-4c5e-a448-80fe50ebc985"},{"name":"Check if IC has been added to the case","event":[{"listen":"test","script":{"id":"a00f4180-b5fb-4860-8284-5a88e1ef9267","exec":["const responseData = pm.response.json().data;","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"d32a7ef4-44fc-46a7-95f2-34e4f424baf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/674993c53eb1c51bcae4d905","description":"<h2 id=\"get-document-details\">Get Document Details</h2>\n<p>This endpoint retrieves the details of a specific document identified by its unique ID.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/documents/67502399bc0b293e7c24e780</code></p>\n</li>\n<li><p><strong>Path Parameter:</strong></p>\n<ul>\n<li><code>addedDocumentId</code> (string): The unique identifier of the document whose details are being requested.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain the details of the document in a structured format. The exact structure of the response will depend on the document's attributes, which may include metadata such as title, author, creation date, and other relevant information.</p>\n<h3 id=\"example-response-format\">Example Response Format</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"string\",\n  \"title\": \"string\",\n  \"author\": \"string\",\n  \"created_at\": \"string\",\n  \"metadata\": {\n    // additional document-specific fields\n  }\n}\n\n</code></pre>\n<p>Ensure that the <code>addedDocumentId</code> is valid to receive the corresponding document details.</p>\n","urlObject":{"path":["rest","cases","674993c53eb1c51bcae4d905"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"8d1a8f8a-590a-4cc1-9111-fa3ff59dcf74","name":"Check if IC has been added to the case - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases/674993c53eb1c51bcae4d905"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:27:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"763"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb119c8ebe5a6504ad89\",\n        \"externalId\": \"145780752-188734989\",\n        \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"tenor\": 255,\n        \"type\": \"renewal\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6852fb4c9c8ebe5a6504b063\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"685304529c8ebe5a6504e27d\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:44:48.999Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:44:48.999Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:44:49.197Z\",\n        \"updatedAt\": \"2025-06-18T18:24:56.334Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"d32a7ef4-44fc-46a7-95f2-34e4f424baf5"},{"name":"Check if IC has been added to policy","event":[{"listen":"test","script":{"id":"b6a9cca6-ad97-4cd4-bb9b-97761c5026db","exec":["const responseData = pm.response.json().data;","","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"ce510653-fb92-4969-95eb-f41c03522665","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/policies/674ec06ff814711c99d02e74","description":"<h3 id=\"get-policy-details\">Get Policy Details</h3>\n<p>This endpoint retrieves detailed information about a specific policy identified by the <code>policyId</code>.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/policies/674ec06ff814711c99d02e74</code></p>\n</li>\n</ul>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<ul>\n<li><code>policyId</code> (string, required): The unique identifier of the policy for which details are being requested.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>On a successful request, the response will contain the details of the specified policy in a structured format. The response typically includes:</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier of the policy.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the policy.</p>\n</li>\n<li><p><strong>description</strong> (string): A detailed description of the policy.</p>\n</li>\n<li><p><strong>status</strong> (string): The current status of the policy (e.g., active, inactive).</p>\n</li>\n<li><p><strong>created_at</strong> (string): The timestamp indicating when the policy was created.</p>\n</li>\n<li><p><strong>updated_at</strong> (string): The timestamp indicating the last time the policy was updated.</p>\n</li>\n</ul>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"12345\",\n  \"name\": \"Sample Policy\",\n  \"description\": \"This is a sample policy description.\",\n  \"status\": \"active\",\n  \"created_at\": \"2023-01-01T00:00:00Z\",\n  \"updated_at\": \"2023-01-10T00:00:00Z\"\n}\n\n</code></pre>\n<p>This endpoint is useful for obtaining the specific details of a policy, which can be used for review, modification, or reporting purposes.</p>\n","urlObject":{"path":["rest","policies","674ec06ff814711c99d02e74"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"e0e3b628-d412-471f-8727-af0b8554c461","name":"Check if IC has been added to policy - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/policies/674ec06ff814711c99d02e74"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:26:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1595"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852fb619c8ebe5a6504b83f\",\n        \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n        \"broker\": null,\n        \"startDate\": \"2024-12-10T00:00:00.000Z\",\n        \"endDate\": \"2024-12-27T00:00:00.000Z\",\n        \"status\": \"advocateReviewingCompliance\",\n        \"score\": {\n            \"passing\": 0,\n            \"total\": 0\n        },\n        \"assets\": [\n            \"6852fb2f9c8ebe5a6504b033\"\n        ],\n        \"documents\": [],\n        \"perilsByAsset\": [\n            {\n                \"asset\": \"6852fb2f9c8ebe5a6504b033\",\n                \"perils\": [\n                    {\n                        \"id\": \"653633033ee3a40016d5f532\",\n                        \"name\": \"Property\",\n                        \"key\": \"property\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f537\",\n                        \"name\": \"Wind Hail\",\n                        \"key\": \"windHail\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f536\",\n                        \"name\": \"Named Storm\",\n                        \"key\": \"namedStorm\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f53e\",\n                        \"name\": \"General Liability\",\n                        \"key\": \"generalLiability\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f53f\",\n                        \"name\": \"Umbrella Liability\",\n                        \"key\": \"umbrellaLiability\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f546\",\n                        \"name\": \"Earthquake\",\n                        \"key\": \"earthquake\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f534\",\n                        \"name\": \"Boiler & Machinery\",\n                        \"key\": \"boilerMachinery\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f538\",\n                        \"name\": \"Terrorism Property\",\n                        \"key\": \"terrorismProperty\"\n                    }\n                ]\n            }\n        ],\n        \"insured\": [],\n        \"insuranceContacts\": [\n            \"685304529c8ebe5a6504e27d\"\n        ],\n        \"productType\": {\n            \"id\": \"637674b3bdddd70013909fff\",\n            \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n            \"name\": \"General Commercial Package Policy\",\n            \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n        },\n        \"transitions\": [\n            {\n                \"to\": \"advocateReviewingCompliance\",\n                \"createdAt\": \"2025-06-18T17:46:09.305Z\"\n            }\n        ],\n        \"escalationType\": null,\n        \"waiverStatus\": null,\n        \"policyStructure\": \"trueScheduled\",\n        \"carrier\": null,\n        \"createdAt\": \"2025-06-18T17:46:09.279Z\",\n        \"updatedAt\": \"2025-06-18T18:24:53.793Z\",\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\"\n    }\n}"}],"_postman_id":"ce510653-fb92-4969-95eb-f41c03522665"}],"id":"9060000d-d0d9-431b-8318-57d5bf6b2c26","description":"<p>Here you can find information on how to edit the selected policy by insurance contact In order to do it, IC needs to be assigned to the case in the first place; ONLY then IC can be assigned to the policy.</p>\n","_postman_id":"9060000d-d0d9-431b-8318-57d5bf6b2c26","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}}},{"name":"Meta Data","item":[{"name":"New Case With Documents Meta","item":[{"name":"Create a Case - New Case Documents","event":[{"listen":"test","script":{"id":"4a2b9c74-f69e-4e0e-980a-11786bc689b6","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('newCaseDocCaseId', responseData.data.id)","pm.collectionVariables.set('externalId', responseData.data.externalId)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"d49608de-c141-4737-8da1-12074ae2e128","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomCaseId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"1d0d1860-9c7a-4a7d-b996-bbf301d13b17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"new\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": false,\n  \"name\": \"New-Case-RestAPICase Docs With Meta\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255,\n          \"metadata\": {\n        \"One-MetaDataEmptyString\": \"\",\n        \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n        \"Three-MetaDataString\": \"MetaDataStringTest\",\n        \"Four-MetaDataNumbersOnly\": \"55555\",\n        \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h2 id=\"add-case-request\">Add Case Request</h2>\n<p>This endpoint allows you to create a new case by submitting relevant details. It is particularly useful for initiating case processes such as pre-closure.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., <code>new</code>.</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date</p>\n</li>\n<li><p><code>riskReviewDeadlineAt</code> (date): riskReviewDeadlineAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): now/future this is reserved only for case type = renewal</p>\n</li>\n</ul>\n<p>Example of a valid request body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"new\",\n  \"program\": \"{{ProgramNewRenewalAsse ...\",\n  \"isEscrow\": {}\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful creation of a case, the response will typically include a confirmation of the case details, including any identifiers or status messages relevant to the newly created case. The exact structure of the response may vary based on the implementation but generally includes:</p>\n<ul>\n<li><p>Case ID</p>\n</li>\n<li><p>Status of the case creation</p>\n</li>\n<li><p>Any additional relevant information or error messages if applicable.</p>\n</li>\n</ul>\n<p>Make sure to handle the response appropriately to confirm the successful addition of the case.</p>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"d5655fc1-b2d3-4ffb-8a94-4967cab78f0b","name":"Create a Case - New Case Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"965255386-949920728\",\n  \"type\": \"new\",\n  \"program\": \"677cfe471840abee910c8405\",\n  \"isEscrow\": false,\n  \"name\": \"New-Case-RestAPICase Docs With Meta\",\n  \"certificateHolders\": [\n    \"\"\n  ],\n  \"insured\": [\n    \"\"\n  ],\n  \"insuranceContacts\": [\n    \"\"\n  ],\n  \"providingDocuments\": true,\n  \"dealClosingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"riskReviewDeadlineAt\": \"2025-06-02T09:15:24.282Z\",\n  \"expectedMaturingAt\": \"2025-06-02T09:15:24.282Z\",\n  \"complianceReview\": NOW,\n  \"tenor\": 255,\n          \"metadata\": {\n        \"One-MetaDataEmptyString\": \"\",\n        \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n        \"Three-MetaDataString\": \"MetaDataStringTest\",\n        \"Four-MetaDataNumbersOnly\": \"55555\",\n        \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:32:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1139"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685306299c8ebe5a6504e3d7\",\n        \"externalId\": \"758188486-700472372\",\n        \"name\": \"New-Case-RestAPICase Docs With Meta\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"draft\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T19:32:08.911Z\",\n        \"expectedMaturingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T18:32:09.408Z\",\n        \"updatedAt\": \"2025-06-18T18:32:09.408Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null,\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"\",\n            \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n            \"Three-MetaDataString\": \"MetaDataStringTest\",\n            \"Four-MetaDataNumbersOnly\": \"55555\",\n            \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n        }\n    }\n}"}],"_postman_id":"1d0d1860-9c7a-4a7d-b996-bbf301d13b17"},{"name":"Assets","event":[{"listen":"test","script":{"id":"b3260b91-7d3e-456f-a229-15912f04e4c6","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","    pm.expect(pm.response.code).to.equal(201);","});","",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"98a9fb25-baec-4e12-b64c-b7b812c1c880","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets","description":"<h2 id=\"add-asset\">Add Asset</h2>\n<p>This endpoint allows users to create a new asset in the system. It is designed to handle the addition of multifamily assets by providing necessary details such as address, asset type, lender information, and case ID.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<p><strong>POST</strong></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>https://api-v2-test.tryadvocate.com/rest/assets</code></p>\n<h3 id=\"request-body-parameters\">Request Body Parameters</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>fields</strong>: An array of field objects that contain specific details about the asset.</p>\n<ul>\n<li><p><strong>fieldType</strong>: (string) The identifier for the type of field being provided.</p>\n</li>\n<li><p><strong>value</strong>: (object) An object containing address details:</p>\n<ul>\n<li><p><strong>streetAddress</strong>: (string) The street address of the asset.</p>\n</li>\n<li><p><strong>city</strong>: (string) The city where the asset is located.</p>\n</li>\n<li><p><strong>postalCode</strong>: (string) The postal code for the asset's location.</p>\n</li>\n<li><p><strong>state</strong>: (string) The state where the asset is situated.</p>\n</li>\n<li><p><strong>country</strong>: (string) The country of the asset.</p>\n</li>\n<li><p><strong>formattedAddress</strong>: (string) A formatted version of the complete address.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>assetType</strong>: (string) The identifier for the type of asset being created, typically a multifamily asset type ID.</p>\n</li>\n<li><p><strong>caseId</strong>: (string) The identifier for the case related to the asset.</p>\n</li>\n<li><p><strong>documents</strong>: (array) An optional array for any documents associated with the asset. This can be left empty if no documents are provided.</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon successful creation of the asset, the API will return a response indicating the status of the operation, typically including a confirmation message and the details of the newly created asset. The response will be in JSON format.</p>\n<p>This endpoint is essential for managing and tracking assets within the system, ensuring all relevant details are captured and stored efficiently.</p>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"be91b007-39dc-4001-a816-52cc2899a8ce","name":"Assets - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"128 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"128 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ],\n      \"assetType\": \"\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"documents\": []\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2.tryadvocate.com/rest/assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:32:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4984"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685306349c8ebe5a6504e681\",\n        \"caseId\": \"685306299c8ebe5a6504e3d7\",\n        \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"128 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T18:32:20.150Z\",\n        \"updatedAt\": \"2025-06-18T18:32:20.150Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"98a9fb25-baec-4e12-b64c-b7b812c1c880"},{"name":"Documents sign-urls","event":[{"listen":"test","script":{"id":"e90c22b6-9503-4048-9bae-e714d5004f0f","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('signedUrl', responseData.data[0].signedUrl)","pm.collectionVariables.set('directUploadKey', responseData.data[0].directUploadKey)","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"40540f3d-9c7d-47a6-8b9c-bb8e3637b7a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls","description":"<h2 id=\"endpoint-create-sign-urls\">Endpoint: Create Sign URLs</h2>\n<p>This endpoint allows users to generate sign URLs for documents that need to be signed electronically. The request should include details about the documents for which the sign URLs are being requested.</p>\n<h3 id=\"request\">Request</h3>\n<p><strong>Method:</strong> POST<br /><strong>URL:</strong> <code>https://api-v2-test.tryadvocate.com/rest/documents/sign-urls</code></p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be a JSON object containing the following parameter:</p>\n<ul>\n<li><p><strong>docs</strong> (Array of Objects): An array of document objects that need to be signed. Each document object should include:</p>\n<ul>\n<li><p><strong>fileName</strong> (String): The name of the file, including its extension (e.g., \"filename.pdf\").</p>\n</li>\n<li><p><strong>fileType</strong> (String): The MIME type of the file (e.g., \"application/pdf\").</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"fileName\": \"filename.pdf\",\n      \"fileType\": \"application/pdf\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain the generated sign URLs for the documents specified in the request. The exact structure of the response will depend on the implementation but typically includes a success status and the URLs for signing.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the file type specified matches the actual file type being submitted.</p>\n</li>\n<li><p>The endpoint may return error messages if the request is malformed or if the documents cannot be processed.</p>\n</li>\n<li><p>This functionality is essential for integrating electronic signature capabilities into applications.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","documents","sign-urls"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"02df655b-13c9-4c75-8f60-e93dcaca5210","name":"Documents sign-urls - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"docs\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents/sign-urls"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:32:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"709"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"fileExt\": \"pdf\",\n            \"directUploadKey\": \"Your direct upload Value\",\n            \"signedUrl\": \"Your signed URL value\"\n        }\n    ]\n}"}],"_postman_id":"40540f3d-9c7d-47a6-8b9c-bb8e3637b7a3"},{"name":"AWS","event":[{"listen":"test","script":{"exec":["pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});",""],"type":"text/javascript","packages":{},"id":"f9afa4cb-433e-4800-8f35-9219e7c53428"}}],"id":"795249e3-973e-4de6-ba48-955abe49b223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"file","file":{"src":"postman-cloud:///1ef1dcbc-a711-4570-973b-8f33a95f04c0"}},"url":"signedUrl","description":"<h3 id=\"update-resource\">Update Resource</h3>\n<p>This endpoint allows you to update an existing resource at the specified <code>signedUrl</code>. It is typically used to modify the properties of the resource identified by the URL.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body is expected to be in a format that aligns with the resource being updated. However, the specific structure and required fields of the request body are not defined in the current context. Ensure to refer to the API documentation or specifications for the exact format and required parameters.</p>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response from this endpoint will provide confirmation of the update operation. The structure of the response is not explicitly defined here, but it usually includes:</p>\n<ul>\n<li><p>A status code indicating the success or failure of the operation.</p>\n</li>\n<li><p>A message detailing the result of the update.</p>\n</li>\n<li><p>Optionally, the updated resource data may be returned.</p>\n</li>\n</ul>\n<p>Make sure to handle the response appropriately based on the status code received.</p>\n","urlObject":{"host":["signedUrl"],"query":[],"variable":[]}},"response":[],"_postman_id":"795249e3-973e-4de6-ba48-955abe49b223"},{"name":"Documents","event":[{"listen":"test","script":{"id":"19b27b83-df23-49d0-9693-ce196004ece5","exec":["","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}}],"id":"a8929b1d-cfbb-45d5-83b3-6eeaa4132972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"Case #23452345.pdf\",\n      \"fileType\": \"application/pdf\",\n      \"directUploadKey\": \"directUploadKey\",\n      \"metadata\": {\n        \"One-MetaDataEmptyString\": \"\",\n        \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n        \"Three-MetaDataString\": \"MetaDataStringTest\",\n        \"Four-MetaDataNumbersOnly\": \"55555\",\n        \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n    } \n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h2 id=\"api-endpoint-create-document\">API Endpoint: Create Document</h2>\n<h3 id=\"method\">Method</h3>\n<p><code>POST</code></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>https://api-v2-test.tryadvocate.com/rest/documents</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint allows users to upload documents associated with a case. The request payload must contain an array of document objects, each including various metadata and file details.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body should be a JSON object containing the following parameters:</p>\n<ul>\n<li><p><strong>docs</strong> (Array): An array of document objects, where each object must include:</p>\n<ul>\n<li><p><strong>name</strong> (String): The name of the document.</p>\n</li>\n<li><p><strong>caseId</strong> (String): The identifier for the case associated with the document.</p>\n</li>\n<li><p><strong>categoryId</strong> (String): The category identifier for the document.</p>\n</li>\n<li><p><strong>fileName</strong> (String): The name of the file being uploaded.</p>\n</li>\n<li><p><strong>fileType</strong> (String): The MIME type of the file (e.g., <code>application/pdf</code>).</p>\n</li>\n<li><p><strong>directUploadKey</strong> (String): A key used for direct file uploads.</p>\n</li>\n<li><p><strong>metadata</strong> (Object): An object containing additional metadata fields:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong> (String): An optional field that may be empty.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong> (String): A field that can contain long strings.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong> (String): A field for general string metadata.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong> (String): A field intended for numeric values.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong> (String): A field that can include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon successful document upload, the API will return a response indicating the status of the operation, typically including a success message and any relevant identifiers or metadata associated with the uploaded document.</p>\n<p>Ensure that all required fields are populated correctly to avoid validation errors during the upload process.</p>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"553b5ada-91d3-481b-b1d8-842581da4d67","name":"Documents - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"docs\": [\n    {\n      \"name\": \"RestAPIDocumentName\",\n      \"caseId\": \"6750239bbc0b293e7c24e8db\",\n      \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n      \"fileName\": \"Case #23452345.pdf\",\n      \"fileType\": \"application/pdf\",\n      \"directUploadKey\": \"directUploadKey\",\n      \"metadata\": {\n        \"One-MetaDataEmptyString\": \"\",\n        \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n        \"Three-MetaDataString\": \"MetaDataStringTest\",\n        \"Four-MetaDataNumbersOnly\": \"55555\",\n        \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n    } \n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:32:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1241"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6853064e9c8ebe5a6504e6b1\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"685306299c8ebe5a6504e3d7\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T18:32:46.192Z\",\n            \"updatedAt\": \"2025-06-18T18:32:46.192Z\",\n            \"url\": \"Your direct upload Value\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        }\n    ]\n}"}],"_postman_id":"a8929b1d-cfbb-45d5-83b3-6eeaa4132972"},{"name":"Case id publish","event":[{"listen":"test","script":{"id":"f2e1610b-d49d-4d0f-a9c1-d4f7a44613ca","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"2c2568e0-50ea-4760-b941-6d9ebb209cd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db/publish","description":"<h2 id=\"publish-case-document\">Publish Case Document</h2>\n<p>This endpoint allows users to publish a case document identified by the <code>newCaseDocCaseId</code>. This action is typically performed when a case document is ready to be finalized and made available for further processing.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db/publish</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be sent in the form of <code>x-www-form-urlencoded</code> or <code>form-data</code>. The following parameters are expected:</p>\n<ul>\n<li><p><strong>parameter1</strong> (type: text): Description of parameter1.</p>\n</li>\n<li><p><strong>parameter2</strong> (type: text): Description of parameter2.</p>\n</li>\n<li><p><strong>parameter3</strong> (type: file): Description of parameter3 (if applicable).</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successful execution of the request, the response will typically include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates the success or failure of the publish operation.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional context about the operation.</p>\n</li>\n<li><p><strong>caseId</strong>: The ID of the case document that has been published.</p>\n</li>\n</ul>\n<p>Ensure that all required parameters are included in the request body to avoid errors during processing.</p>\n","urlObject":{"path":["rest","cases","6750239bbc0b293e7c24e8db","publish"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"b01686c7-c7c8-42bd-a7b4-a8c922d21f51","name":"Case id publish - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db/publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:32:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1178"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685306299c8ebe5a6504e3d7\",\n        \"externalId\": \"758188486-700472372\",\n        \"name\": \"New-Case-RestAPICase Docs With Meta\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6853064e9c8ebe5a6504e6b1\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T19:32:08.911Z\",\n        \"expectedMaturingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T18:32:09.408Z\",\n        \"updatedAt\": \"2025-06-18T18:32:55.515Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"\",\n            \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n            \"Three-MetaDataString\": \"MetaDataStringTest\",\n            \"Four-MetaDataNumbersOnly\": \"55555\",\n            \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n        }\n    }\n}"}],"_postman_id":"2c2568e0-50ea-4760-b941-6d9ebb209cd8"}],"id":"edffe26d-e078-4951-ba14-846d25777b7a","description":"<p>Here you can find information on how to add meta data to a newly created case regardless of type.</p>\n","_postman_id":"edffe26d-e078-4951-ba14-846d25777b7a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}}},{"name":"Insured Group - Meta Data Single Meta","event":[{"listen":"test","script":{"id":"071e0b55-a676-4077-b7ea-0519134ce516","exec":["const  responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});","",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"22d81f3f-a643-445f-a0fd-c7c86a48fc82","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBorrowerGroupNr', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"27432ce8-b35b-424d-9d9c-b6149b39d4f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"RestAPI-Group-754661038-757249367\",\n    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups","description":"<h2 id=\"add-borrower-group\">Add Borrower Group</h2>\n<p>This endpoint allows you to create a new borrower group in the system.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insured-groups</code></p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and contain the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the borrower group. This should be a unique identifier for the group.</p>\n</li>\n<li><p><strong>metadata</strong> (object): An object containing additional metadata for the borrower group.</p>\n<ul>\n<li><strong>Three-MetaDataString</strong> (string): A string value representing specific metadata related to the borrower group.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"example-request-body\">Example Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"RestAPI-Group-{{randomBorrower}}\",\n  \"metadata\": {\n    \"Three-MetaDataString\": \"MetaDataStringTest\"\n  }\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful creation of a borrower group, the API will return a response in JSON format. The response will typically include the details of the created borrower group, including its unique identifier and any default values assigned during creation.</p>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<ul>\n<li><p><strong>status</strong> (string): Indicates the success status of the operation (e.g., \"success\").</p>\n</li>\n<li><p><strong>data</strong> (object): Contains the details of the newly created borrower group.</p>\n</li>\n</ul>\n<p>This endpoint is essential for managing borrower groups effectively within the application.</p>\n","urlObject":{"path":["rest","insured-groups"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"09209432-6535-4b56-96eb-a03ed492b354","name":"Insured Group - Meta Data Single Meta - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"RestAPI-Group-754661038-757249367\",\n    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:33:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"220"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6853066a9c8ebe5a6504e7d1\",\n        \"name\": \"RestAPI-Group-860056795-692632032\",\n        \"createdAt\": \"2025-06-18T18:33:14.699Z\",\n        \"updatedAt\": \"2025-06-18T18:33:14.699Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\"\n        }\n    }\n}"}],"_postman_id":"27432ce8-b35b-424d-9d9c-b6149b39d4f2"},{"name":"Insured Group - Meta Data","event":[{"listen":"test","script":{"id":"21cf8ccc-8de7-4dfe-b298-8e02b62f8055","exec":["const  responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"8b41ffc2-9265-45a1-97ca-55f0624f3651","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBorrowerGroupNr', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"dc59765d-3a3d-47e6-8a0b-faeec468c77a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"RestAPI-Group-754661038-757249367\",\n    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint allows users to create a new borrower group by sending a POST request to <code>https://api-v2-test.tryadvocate.com/rest/insured-groups</code>. It is designed to facilitate the organization of insured into groups for better management and tracking.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request body must be in JSON format and should contain the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the borrower group. This field is required and should be unique.</p>\n</li>\n<li><p><strong>metadata</strong> (object): An object containing various metadata fields related to the borrower group. The structure of the metadata object includes:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong> (string): A string that can be empty.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong> (string): A long string that provides additional information about the group.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong> (string): A string used for any specific metadata identifier.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong> (string): A string that should contain numbers only.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong> (string): A string that can include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"RestAPI-Group-{{randomBorrower}}\",\n  \"metadata\": {\n    \"One-MetaDataEmptyString\": \"\",\n    \"Two-MetaDataLongString\": \"This is a very long string - T ...\",\n    \"Three-MetaDataString\": \"MetaDataStringTest\",\n    \"Four-MetaDataNumbersOnly\": \"55555\",\n    \"Five-MetaDataSpecialChars\": \"&lt;&gt;()@$*&amp;)#(*$^#@)(%^@#)!(%&amp;*^@ ...\"\n  }\n}\n\n</code></pre>\n<h3 id=\"expected-response-structure\">Expected Response Structure</h3>\n<p>Upon successful creation of the borrower group, the API will return a response containing the details of the newly created group. The structure of the response will typically include:</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier for the newly created borrower group.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the borrower group that was created.</p>\n</li>\n<li><p><strong>metadata</strong> (object): The metadata associated with the borrower group, reflecting the values sent in the request.</p>\n</li>\n</ul>\n<p>This response structure allows the client to confirm that the borrower group has been successfully created and provides the necessary details for further operations.</p>\n","urlObject":{"path":["rest","insured-groups"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"8d1e29ed-71c5-47e2-ab05-771d900247b2","name":"Insured Group - Meta Data - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"RestAPI-Group-754661038-757249367\",\n    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:33:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"400"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"50"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685306759c8ebe5a6504e7d4\",\n        \"name\": \"RestAPI-Group-331824922-714017564\",\n        \"createdAt\": \"2025-06-18T18:33:25.075Z\",\n        \"updatedAt\": \"2025-06-18T18:33:25.075Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"dc59765d-3a3d-47e6-8a0b-faeec468c77a"},{"name":"Insured Group id - Meta Data Empty","event":[{"listen":"test","script":{"id":"fac2be88-ee1c-43e4-811f-bce57e16c588","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"1b70d5e5-09fd-434b-b424-564e99f55b10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"    { \n        \"metadata\": {\n    } \n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c","description":"<h3 id=\"patch-restinsured-groupsinsuredgroupid\">PATCH /rest/insured-groups/6750239ebc0b293e7c24ec3c</h3>\n<p>This endpoint allows you to update the metadata of a specific borrower group identified by <code>insuredGroupId</code>.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be a JSON object containing the following parameter:</p>\n<ul>\n<li><strong>metadata</strong> (object): This parameter is used to provide additional information or attributes related to the borrower group. The structure of this object can vary based on the specific requirements of the borrower group.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful request, the response will typically include the updated details of the borrower group. The structure of the response will reflect the changes made to the <code>metadata</code> and may include additional information about the borrower group.</p>\n<p>Make sure to provide valid JSON in the request body to ensure proper processing of the update.</p>\n","urlObject":{"path":["rest","insured-groups","6750239ebc0b293e7c24ec3c"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"b68aa154-dd53-45b5-8a2b-edebedbbd30e","name":"Insured Group id - Meta Data Empty - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"    { \n        \"metadata\": {\n    } \n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:33:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"177"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6750239ebc0b293e7c24ec3c\",\n        \"name\": \"RestAPI-Group-522264151-297716817\",\n        \"createdAt\": \"2024-12-04T09:40:46.063Z\",\n        \"updatedAt\": \"2025-06-18T18:33:40.674Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"1b70d5e5-09fd-434b-b424-564e99f55b10"},{"name":"Insured Group id - Meta Data","event":[{"listen":"test","script":{"id":"a3aba890-c666-4921-a9fd-d9d13946b4fc","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"d2f15a66-d810-46e0-8063-aae4b5768d7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"    { \n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c","description":"<h2 id=\"update-borrower-group-metadata\">Update Borrower Group Metadata</h2>\n<p>This endpoint allows you to update the metadata associated with a specific borrower group identified by <code>insuredGroupId</code>. The HTTP method used for this operation is PATCH, which is typically used for partial updates to a resource.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request body must be in JSON format and should contain a <code>metadata</code> object with the following properties:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong>: (string) An empty string value. This field can be left blank.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong>: (string) A long string that can contain detailed information relevant to the borrower group.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong>: (string) A string value used for testing or identification purposes.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong>: (string) A string that contains only numeric values, representing a specific identifier or code.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong>: (string) A string that can include special characters, which may be used for various purposes.</p>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"metadata\": {\n    \"One-MetaDataEmptyString\": \"\",\n    \"Two-MetaDataLongString\": \"This is a very long string - T ...\",\n    \"Three-MetaDataString\": \"MetaDataStringTest\",\n    \"Four-MetaDataNumbersOnly\": \"55555\",\n    \"Five-MetaDataSpecialChars\": \"&lt;&gt;()@$*&amp;)#(*$^#@)(%^@#)!(%&amp;*^@ ...\"\n  }\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will typically include a confirmation of the update operation, along with the updated metadata structure. The exact structure of the response may vary based on the implementation but is expected to confirm the success of the operation and may include the updated metadata values.</p>\n<h3 id=\"usage\">Usage</h3>\n<p>This endpoint is useful for applications that need to manage borrower group information dynamically, allowing for updates to the metadata without needing to replace the entire borrower group resource.</p>\n","urlObject":{"path":["rest","insured-groups","6750239ebc0b293e7c24ec3c"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"3a36bc89-8d5e-461c-bcb3-5745245b9eec","name":"Insured Group id - Meta Data - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"    { \n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:33:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"400"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"47"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6750239ebc0b293e7c24ec3c\",\n        \"name\": \"RestAPI-Group-522264151-297716817\",\n        \"createdAt\": \"2024-12-04T09:40:46.063Z\",\n        \"updatedAt\": \"2025-06-18T18:33:54.368Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"d2f15a66-d810-46e0-8063-aae4b5768d7c"},{"name":"Insured Group id - Meta Data Single Edit","event":[{"listen":"test","script":{"id":"f519dad2-791d-450f-8502-6bb82ce9f126","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"8ad40c56-260b-4ec6-a4b5-eb2a44617312","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"    { \n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"EditEmptyString\"\n    } \n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c","description":"<h3 id=\"update-borrower-group-metadata\">Update Borrower Group Metadata</h3>\n<p>This endpoint allows you to update the metadata associated with a specific borrower group identified by <code>insuredGroupId</code>.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: PATCH</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should contain the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"metadata\": {\n    \"One-MetaDataEmptyString\": \"EditEmptyString\"\n  }\n}\n\n</code></pre>\n<ul>\n<li><p><strong>metadata</strong>: An object that holds metadata information for the borrower group.</p>\n<ul>\n<li><strong>One-MetaDataEmptyString</strong>: A string parameter that can be used to provide or update specific metadata values. In this example, it is set to \"EditEmptyString\".</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response from this endpoint will typically include a confirmation of the update operation. The structure of the response may vary, but it generally confirms the success or failure of the update request, along with any relevant details about the updated borrower group.</p>\n<p>Ensure that the <code>insuredGroupId</code> is valid and that you have the necessary permissions to modify the borrower group metadata.</p>\n","urlObject":{"path":["rest","insured-groups","6750239ebc0b293e7c24ec3c"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"40a0bce3-1e17-4c4d-b61c-eba67c2c768f","name":"Insured Group id - Meta Data Single Edit - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"    { \n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"EditEmptyString\"\n    } \n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:34:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"220"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"997"},{"key":"x-ratelimit-reset","value":"35"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6750239ebc0b293e7c24ec3c\",\n        \"name\": \"RestAPI-Group-522264151-297716817\",\n        \"createdAt\": \"2024-12-04T09:40:46.063Z\",\n        \"updatedAt\": \"2025-06-18T18:34:05.979Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"EditEmptyString\"\n        }\n    }\n}"}],"_postman_id":"8ad40c56-260b-4ec6-a4b5-eb2a44617312"},{"name":"Insured Group - Meta Data - Filtering","event":[{"listen":"test","script":{"id":"855271e9-93bf-44d3-8f71-b8442b593dd8","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('insuredGroupId', responseData.data[0].id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"218463b9-9ff3-44ff-8f6d-f60e15fa7594","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups?limit=15&metadata.Three-MetaDataString[eq]=MetaDataStringTest","description":"<h3 id=\"api-endpoint-get-borrower-groups\">API Endpoint: Get Borrower Groups</h3>\n<p><strong>Method:</strong> <code>GET</code><br /><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/insured-groups</code></p>\n<p>This endpoint retrieves a list of borrower groups based on specified query parameters.</p>\n<h4 id=\"query-parameters\">Query Parameters:</h4>\n<ul>\n<li><p><code>limit</code> (integer): Specifies the maximum number of borrower groups to return. In this request, it's set to <code>15</code>.</p>\n</li>\n<li><p><code>metadata.Three-MetaDataString[eq]</code> (string): A filter parameter that allows you to retrieve borrower groups where the <code>Three-MetaDataString</code> equals <code>MetaDataStringTest</code>.</p>\n</li>\n</ul>\n<h4 id=\"expected-response-format\">Expected Response Format:</h4>\n<p>The response will be in JSON format and will include an array of borrower groups that match the specified criteria. Each borrower group object will contain relevant details about the group.</p>\n<p>Ensure you include the necessary query parameters to filter the results as needed.</p>\n","urlObject":{"path":["rest","insured-groups"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"limit","value":"15"},{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}],"variable":[]}},"response":[{"id":"5c93bae6-9c0b-40ec-a466-d6a3cf2bdaca","name":"Insured Group - Meta Data - Filtering - Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/insured-groups?limit=15&metadata.Three-MetaDataString[eq]=MetaDataStringTest","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","insured-groups"],"query":[{"key":"limit","value":"15"},{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:34:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3232"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 21,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"684aab2fd6a91c15ef16e809\",\n            \"name\": \"RestAPI-Group-283437496-615547886\",\n            \"createdAt\": \"2025-06-12T10:25:51.936Z\",\n            \"updatedAt\": \"2025-06-12T10:25:51.936Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"684a42e8084a00665f6b8618\",\n            \"name\": \"RestAPI-Group-868826483-341188017\",\n            \"createdAt\": \"2025-06-12T03:00:56.699Z\",\n            \"updatedAt\": \"2025-06-12T03:00:56.699Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"684a3a5a084a00665f5a6401\",\n            \"name\": \"RestAPI-Group-973886021-927110386\",\n            \"createdAt\": \"2025-06-12T02:24:26.713Z\",\n            \"updatedAt\": \"2025-06-12T02:24:26.713Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"684999ca084a00665f59d7d8\",\n            \"name\": \"RestAPI-Group-724856911-286311750\",\n            \"createdAt\": \"2025-06-11T14:59:22.554Z\",\n            \"updatedAt\": \"2025-06-11T14:59:22.554Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"6849983a084a00665f596cd7\",\n            \"name\": \"RestAPI-Group-335162592-937085797\",\n            \"createdAt\": \"2025-06-11T14:52:42.453Z\",\n            \"updatedAt\": \"2025-06-11T14:52:42.453Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"6849955d084a00665f4bb46b\",\n            \"name\": \"RestAPI-Group-908748724-862224184\",\n            \"createdAt\": \"2025-06-11T14:40:29.027Z\",\n            \"updatedAt\": \"2025-06-11T14:40:29.027Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"68498e8ea0b0d30e2c68b61b\",\n            \"name\": \"RestAPI-Group-764121960-759134149\",\n            \"createdAt\": \"2025-06-11T14:11:26.506Z\",\n            \"updatedAt\": \"2025-06-11T14:11:26.506Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"6849829fa0b0d30e2c56f2dc\",\n            \"name\": \"RestAPI-Group-536427719-758570840\",\n            \"createdAt\": \"2025-06-11T13:20:31.638Z\",\n            \"updatedAt\": \"2025-06-11T13:20:31.638Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"68498017a0b0d30e2c569230\",\n            \"name\": \"RestAPI-Group-414263826-320964881\",\n            \"createdAt\": \"2025-06-11T13:09:43.297Z\",\n            \"updatedAt\": \"2025-06-11T13:09:43.297Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"68497cf4a0b0d30e2c46e6e9\",\n            \"name\": \"RestAPI-Group-112683244-742386432\",\n            \"createdAt\": \"2025-06-11T12:56:20.297Z\",\n            \"updatedAt\": \"2025-06-11T12:56:20.297Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"68496fc21c67c221e8a9a006\",\n            \"name\": \"RestAPI-Group-503645128-450669133\",\n            \"createdAt\": \"2025-06-11T12:00:02.525Z\",\n            \"updatedAt\": \"2025-06-11T12:00:02.525Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"68495f8e356b48fee1dda84a\",\n            \"name\": \"RestAPI-Group-237520240-569772562\",\n            \"createdAt\": \"2025-06-11T10:50:54.708Z\",\n            \"updatedAt\": \"2025-06-11T10:50:54.708Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"68495c61356b48fee1dd2914\",\n            \"name\": \"RestAPI-Group-715982487-491604223\",\n            \"createdAt\": \"2025-06-11T10:37:21.125Z\",\n            \"updatedAt\": \"2025-06-11T10:37:21.125Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"6849530d356b48fee1dbda94\",\n            \"name\": \"RestAPI-Group-447004683-304245128\",\n            \"createdAt\": \"2025-06-11T09:57:33.023Z\",\n            \"updatedAt\": \"2025-06-11T09:57:33.023Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"68494e4a356b48fee1cc8bdf\",\n            \"name\": \"RestAPI-Group-366694200-124304834\",\n            \"createdAt\": \"2025-06-11T09:37:14.133Z\",\n            \"updatedAt\": \"2025-06-11T09:37:14.133Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        }\n    ]\n}"}],"_postman_id":"218463b9-9ff3-44ff-8f6d-f60e15fa7594"},{"name":"Insured Corporate No Group - Meta Data","event":[{"listen":"test","script":{"id":"b8ec9be7-4999-448b-b69d-69f2c8e70120","exec":["","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"97168414-09b6-48f7-b46e-df14cef431d2","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBorrowerId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"43cb93bb-8e01-45e1-b336-dece95d5c0cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"type\": \"corporate\",\n        \"corporateName\": \"CorporateName RestAPI 534915727-871366963\",\n        \"displayName\": \"CorporateName RestAPI 534915727-871366963\",\n        \"category\": \"606b53fa6c1ef7e79a951b50\",\n        \"insuredGroup\": null,\n        \"pathName\": \"CorporateName RestAPI\",\n        \"createdAt\": \"2024-05-28T05:56:15.666Z\",\n        \"updatedAt\": \"2024-05-29T14:02:57.170Z\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured","description":"<h2 id=\"add-borrower\">Add Borrower</h2>\n<p>This endpoint allows you to create a new borrower in the system. The borrower can be of type \"corporate\" and requires several parameters to be specified in the request body.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body should be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>type</strong> (string, required): Specifies the type of borrower. For this endpoint, the value should be \"corporate\".</p>\n</li>\n<li><p><strong>corporateName</strong> (string, required): The official name of the corporate borrower.</p>\n</li>\n<li><p><strong>displayName</strong> (string, required): A display name for the corporate borrower.</p>\n</li>\n<li><p><strong>category</strong> (string, required): The category ID to which this borrower belongs.</p>\n</li>\n<li><p><strong>insuredGroup</strong> (string, optional): The group to which the borrower belongs. This can be null if not applicable.</p>\n</li>\n<li><p><strong>pathName</strong> (string, required): A path name for the corporate borrower.</p>\n</li>\n<li><p><strong>createdAt</strong> (string, required): The timestamp indicating when the borrower was created.</p>\n</li>\n<li><p><strong>updatedAt</strong> (string, required): The timestamp indicating when the borrower was last updated.</p>\n</li>\n<li><p><strong>metadata</strong> (object, optional): Additional metadata related to the borrower, which can include:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong> (string): An empty string for any additional metadata.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong> (string): A long string for extended metadata details.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong> (string): A string for general metadata.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong> (string): A string containing only numbers.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong> (string): A string that can include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a response indicating the success of the operation, typically including the details of the newly created borrower.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that all required fields are provided in the request body.</p>\n</li>\n<li><p>Validate the category ID before sending the request.</p>\n</li>\n<li><p>The timestamps should be in ISO 8601 format.</p>\n</li>\n<li><p>The metadata object is optional but can be used to provide additional context about the borrower.</p>\n</li>\n</ul>\n<p>This endpoint is essential for managing corporate insured within the system.</p>\n","urlObject":{"path":["rest","insured"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"b9be936c-36ba-4396-ad74-9f5afbb85154","name":"Insured Corporate No Group - Meta Data - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n        \"type\": \"corporate\",\n        \"corporateName\": \"CorporateName RestAPI 534915727-871366963\",\n        \"displayName\": \"CorporateName RestAPI 534915727-871366963\",\n        \"category\": \"606b53fa6c1ef7e79a951b50\",\n        \"insuredGroup\": null,\n        \"pathName\": \"CorporateName RestAPI\",\n        \"createdAt\": \"2024-05-28T05:56:15.666Z\",\n        \"updatedAt\": \"2024-05-29T14:02:57.170Z\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:34:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"603"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685306c19c8ebe5a6504e7e2\",\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"CorporateName RestAPI 381741178-557939252\",\n        \"displayName\": \"CorporateName RestAPI 381741178-557939252\",\n        \"insuredGroup\": null,\n        \"pathName\": \"CorporateName RestAPI 381741178-557939252\",\n        \"createdAt\": \"2025-06-18T18:34:41.836Z\",\n        \"updatedAt\": \"2025-06-18T18:34:41.836Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"43cb93bb-8e01-45e1-b336-dece95d5c0cc"},{"name":"Insured - Meta Data - Filtering","event":[{"listen":"test","script":{"id":"da97de89-d131-4583-9e7f-aa51fb6bccb4","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"bee49f0d-ff5f-4918-8a1d-c0bf31eb1f86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insured?limit=43&metadata.Three-MetaDataString[eq]=MetaDataStringTest","description":"<h2 id=\"api-endpoint-retrieve-borrowers\">API Endpoint: Retrieve Borrowers</h2>\n<p>This endpoint allows you to retrieve a list of insured with optional filtering and pagination.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><p><strong>limit</strong> (integer, required): Specifies the maximum number of borrower records to return. In this case, it is set to <code>43</code>.</p>\n</li>\n<li><p><strong>metadata.Three-MetaDataString[eq]</strong> (string, optional): A filter parameter that allows you to search for insured based on a specific metadata string. In this example, it is set to <code>MetaDataStringTest</code>.</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>data</strong> (array): An array of borrower objects matching the specified criteria.</p>\n</li>\n<li><p><strong>total</strong> (integer): The total number of borrower records available, regardless of the limit applied.</p>\n</li>\n<li><p><strong>limit</strong> (integer): The limit parameter used in the request.</p>\n</li>\n<li><p><strong>offset</strong> (integer): The offset used for pagination, if applicable.</p>\n</li>\n</ul>\n<p>This endpoint is useful for fetching borrower information while allowing for specific filtering based on metadata.</p>\n","urlObject":{"path":["rest","insured"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"limit","value":"43"},{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}],"variable":[]}},"response":[{"id":"f6b23144-d8e9-490f-8728-4f35009554ee","name":"Insured - Meta Data - Filtering - Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/insured?limit=43&metadata.Three-MetaDataString[eq]=MetaDataStringTest","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","insured"],"query":[{"key":"limit","value":"43"},{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:34:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25180"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 32,\n        \"limit\": 43,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"684aab33d6a91c15ef16e820\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 922970968-655323314\",\n            \"displayName\": \"CorporateName RestAPI 922970968-655323314\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 922970968-655323314\",\n            \"createdAt\": \"2025-06-12T10:25:55.030Z\",\n            \"updatedAt\": \"2025-06-12T10:25:55.030Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a42ea084a00665f6b862f\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 881768922-899854707\",\n            \"displayName\": \"CorporateName RestAPI 881768922-899854707\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 881768922-899854707\",\n            \"createdAt\": \"2025-06-12T03:00:58.573Z\",\n            \"updatedAt\": \"2025-06-12T03:00:58.573Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a3a5d084a00665f5a6418\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 294806628-474536906\",\n            \"displayName\": \"CorporateName RestAPI 294806628-474536906\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 294806628-474536906\",\n            \"createdAt\": \"2025-06-12T02:24:29.790Z\",\n            \"updatedAt\": \"2025-06-12T02:24:29.790Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684999cc084a00665f59d7ef\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 453711769-191877530\",\n            \"displayName\": \"CorporateName RestAPI 453711769-191877530\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 453711769-191877530\",\n            \"createdAt\": \"2025-06-11T14:59:24.523Z\",\n            \"updatedAt\": \"2025-06-11T14:59:24.523Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849983c084a00665f596cee\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 639372998-788407954\",\n            \"displayName\": \"CorporateName RestAPI 639372998-788407954\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 639372998-788407954\",\n            \"createdAt\": \"2025-06-11T14:52:44.415Z\",\n            \"updatedAt\": \"2025-06-11T14:52:44.415Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68499565084a00665f4be512\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 316218290-834554235\",\n            \"displayName\": \"CorporateName RestAPI 316218290-834554235\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 316218290-834554235\",\n            \"createdAt\": \"2025-06-11T14:40:37.175Z\",\n            \"updatedAt\": \"2025-06-11T14:40:37.175Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68498e91a0b0d30e2c68b632\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 209450365-457615259\",\n            \"displayName\": \"CorporateName RestAPI 209450365-457615259\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 209450365-457615259\",\n            \"createdAt\": \"2025-06-11T14:11:29.486Z\",\n            \"updatedAt\": \"2025-06-11T14:11:29.486Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684982a2a0b0d30e2c56f2f3\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 223594756-944046642\",\n            \"displayName\": \"CorporateName RestAPI 223594756-944046642\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 223594756-944046642\",\n            \"createdAt\": \"2025-06-11T13:20:34.617Z\",\n            \"updatedAt\": \"2025-06-11T13:20:34.617Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68498022a0b0d30e2c569b0a\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 725825793-332394397\",\n            \"displayName\": \"CorporateName RestAPI 725825793-332394397\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 725825793-332394397\",\n            \"createdAt\": \"2025-06-11T13:09:54.151Z\",\n            \"updatedAt\": \"2025-06-11T13:09:54.151Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68497d00a0b0d30e2c46f2e1\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-462192917\",\n            \"displayName\": \"EditedBorrowerName-462192917\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"EditedBorrowerName-462192917\",\n            \"createdAt\": \"2025-06-11T12:56:32.462Z\",\n            \"updatedAt\": \"2025-06-11T13:10:23.952Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68497cf7a0b0d30e2c46e700\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 903890554-329327287\",\n            \"displayName\": \"CorporateName RestAPI 903890554-329327287\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 903890554-329327287\",\n            \"createdAt\": \"2025-06-11T12:56:23.398Z\",\n            \"updatedAt\": \"2025-06-11T12:56:23.398Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68496fc51c67c221e8a9a01d\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"Test CorporateName RestAPI 293937646-592331150\",\n            \"displayName\": \"Test CorporateName RestAPI 293937646-592331150\",\n            \"insuredGroup\": \"6750239ebc0b293e7c24ec3c\",\n            \"pathName\": \"Test CorporateName RestAPI 293937646-592331150 > RestAPI-Group-522264151-297716817\",\n            \"createdAt\": \"2025-06-11T12:00:05.832Z\",\n            \"updatedAt\": \"2025-06-17T14:52:42.340Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495f93356b48fee1dda861\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 707451665-897231830\",\n            \"displayName\": \"CorporateName RestAPI 707451665-897231830\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 707451665-897231830\",\n            \"createdAt\": \"2025-06-11T10:50:59.674Z\",\n            \"updatedAt\": \"2025-06-11T10:50:59.674Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495c72356b48fee1dd35fc\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-592131420\",\n            \"displayName\": \"EditedBorrowerName-592131420\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"EditedBorrowerName-592131420\",\n            \"createdAt\": \"2025-06-11T10:37:38.222Z\",\n            \"updatedAt\": \"2025-06-11T10:51:13.037Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495c65356b48fee1dd292b\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 797482745-317484262\",\n            \"displayName\": \"CorporateName RestAPI 797482745-317484262\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 797482745-317484262\",\n            \"createdAt\": \"2025-06-11T10:37:25.470Z\",\n            \"updatedAt\": \"2025-06-11T10:37:25.470Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495333356b48fee1dbe75c\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-104019195\",\n            \"displayName\": \"EditedBorrowerName-104019195\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"EditedBorrowerName-104019195\",\n            \"createdAt\": \"2025-06-11T09:58:11.229Z\",\n            \"updatedAt\": \"2025-06-11T10:37:37.475Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495313356b48fee1dbdaab\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 617422248-337532727\",\n            \"displayName\": \"CorporateName RestAPI 617422248-337532727\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 617422248-337532727\",\n            \"createdAt\": \"2025-06-11T09:57:39.828Z\",\n            \"updatedAt\": \"2025-06-11T09:57:39.828Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68494e55356b48fee1cc996a\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-533843391\",\n            \"displayName\": \"EditedBorrowerName-533843391\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"EditedBorrowerName-533843391\",\n            \"createdAt\": \"2025-06-11T09:37:25.863Z\",\n            \"updatedAt\": \"2025-06-11T09:58:10.473Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68494e4d356b48fee1cc8bf6\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 209456392-209487058\",\n            \"displayName\": \"CorporateName RestAPI 209456392-209487058\",\n            \"insuredGroup\": \"6750239ebc0b293e7c24ec3c\",\n            \"pathName\": \"CorporateName RestAPI 209456392-209487058 > RestAPI-Group-522264151-297716817\",\n            \"createdAt\": \"2025-06-11T09:37:17.358Z\",\n            \"updatedAt\": \"2025-06-17T14:39:55.151Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480f988eaef76bd32b7524\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 816425704-818216774\",\n            \"displayName\": \"CorporateName RestAPI 816425704-818216774\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 816425704-818216774\",\n            \"createdAt\": \"2025-06-10T10:57:28.417Z\",\n            \"updatedAt\": \"2025-06-10T10:57:28.417Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480c8a8eaef76bd32b6e52\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-536394361\",\n            \"displayName\": \"EditedBorrowerName-536394361\",\n            \"insuredGroup\": null,\n            \"pathName\": \"EditedBorrowerName-536394361\",\n            \"createdAt\": \"2025-06-10T10:44:26.676Z\",\n            \"updatedAt\": \"2025-06-10T10:57:40.347Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480c7f8eaef76bd32b6b48\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 970892629-726163253\",\n            \"displayName\": \"CorporateName RestAPI 970892629-726163253\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 970892629-726163253\",\n            \"createdAt\": \"2025-06-10T10:44:15.113Z\",\n            \"updatedAt\": \"2025-06-10T10:44:15.113Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480b8b8eaef76bd32b69ba\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-385515456\",\n            \"displayName\": \"EditedBorrowerName-385515456\",\n            \"insuredGroup\": null,\n            \"pathName\": \"EditedBorrowerName-385515456\",\n            \"createdAt\": \"2025-06-10T10:40:11.172Z\",\n            \"updatedAt\": \"2025-06-10T10:44:25.545Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480b7f8eaef76bd32b66b0\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 500039096-885481366\",\n            \"displayName\": \"CorporateName RestAPI 500039096-885481366\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 500039096-885481366\",\n            \"createdAt\": \"2025-06-10T10:39:59.282Z\",\n            \"updatedAt\": \"2025-06-10T10:39:59.282Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684806b18eaef76bd32b4524\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-158558670\",\n            \"displayName\": \"EditedBorrowerName-158558670\",\n            \"insuredGroup\": null,\n            \"pathName\": \"EditedBorrowerName-158558670\",\n            \"createdAt\": \"2025-06-10T10:19:29.658Z\",\n            \"updatedAt\": \"2025-06-10T10:40:10.009Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684806a58eaef76bd32b4296\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 585500158-524307278\",\n            \"displayName\": \"CorporateName RestAPI 585500158-524307278\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 585500158-524307278\",\n            \"createdAt\": \"2025-06-10T10:19:17.983Z\",\n            \"updatedAt\": \"2025-06-10T10:19:17.983Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847a0268eaef76bd32ac777\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-562908964\",\n            \"displayName\": \"EditedBorrowerName-562908964\",\n            \"insuredGroup\": null,\n            \"pathName\": \"EditedBorrowerName-562908964\",\n            \"createdAt\": \"2025-06-10T03:01:58.610Z\",\n            \"updatedAt\": \"2025-06-10T10:19:28.493Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847a0238eaef76bd32ac408\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 462521983-420545682\",\n            \"displayName\": \"CorporateName RestAPI 462521983-420545682\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 462521983-420545682\",\n            \"createdAt\": \"2025-06-10T03:01:55.461Z\",\n            \"updatedAt\": \"2025-06-10T03:01:55.461Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684797478eaef76bd31a6140\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-525700609\",\n            \"displayName\": \"EditedBorrowerName-525700609\",\n            \"insuredGroup\": null,\n            \"pathName\": \"EditedBorrowerName-525700609\",\n            \"createdAt\": \"2025-06-10T02:24:07.526Z\",\n            \"updatedAt\": \"2025-06-10T03:01:58.236Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847973f8eaef76bd31a5df0\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 234103263-189465304\",\n            \"displayName\": \"CorporateName RestAPI 234103263-189465304\",\n            \"insuredGroup\": \"6750239ebc0b293e7c24ec3c\",\n            \"pathName\": \"CorporateName RestAPI 234103263-189465304 > RestAPI-Group-522264151-297716817\",\n            \"createdAt\": \"2025-06-10T02:23:59.247Z\",\n            \"updatedAt\": \"2025-06-17T14:40:05.413Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"683570811abd2f23c843679b\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-523691612\",\n            \"displayName\": \"EditedBorrowerName-523691612\",\n            \"insuredGroup\": null,\n            \"pathName\": \"EditedBorrowerName-523691612\",\n            \"createdAt\": \"2025-05-27T07:57:53.673Z\",\n            \"updatedAt\": \"2025-06-10T02:24:06.715Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"65b67a17c0c9c80a80e87e71\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-131122304\",\n            \"displayName\": \"EditedBorrowerName-131122304\",\n            \"insuredGroup\": null,\n            \"pathName\": \"EditedBorrowerName-131122304\",\n            \"createdAt\": \"2024-01-28T16:00:23.254Z\",\n            \"updatedAt\": \"2025-06-12T10:26:04.383Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        }\n    ]\n}"}],"_postman_id":"bee49f0d-ff5f-4918-8a1d-c0bf31eb1f86"},{"name":"Insured id - Meta Data","event":[{"listen":"test","script":{"id":"4d4aff1e-6fce-43cf-91e5-949581260bc6","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('borrowerId', responseData.data.id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"56623350-192f-4bd1-8c10-a38388b73c79","exec":["function generateRandomName() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `EditedBorrowerName-${secondPart}`","    pm.collectionVariables.set('EditedBorrowerName', randomNumber)","    return randomNumber.toString();","}","","generateRandomName()"],"type":"text/javascript","packages":{}}}],"id":"3f566bb4-867e-4f54-b2b4-fac68020301a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"corporateName\": \"EditedBorrowerName-104503594\",\n    \"type\": \"corporate\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured/65b67a17c0c9c80a80e87e71","description":"<h3 id=\"patch-restinsuredborrowerid\">PATCH /rest/insured/65b67a17c0c9c80a80e87e71</h3>\n<p>This endpoint allows you to update the details of a specific borrower identified by <code>65b67a17c0c9c80a80e87e71</code>. The request modifies the borrower's corporate information and associated metadata.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>corporateName</strong> (string): The new name of the corporate borrower. This field is required.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of borrower. In this case, it should be set to \"corporate\".</p>\n</li>\n<li><p><strong>metadata</strong> (object): An object containing additional metadata about the borrower. This object can include the following keys:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong> (string): A string that can be empty.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong> (string): A longer descriptive string.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong> (string): A general string for additional information.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong> (string): A string that contains numbers only.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong> (string): A string that may contain special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful update, the server will respond with a confirmation of the updated borrower details. The structure of the response will typically include the updated borrower information, including the fields that were modified.</p>\n<p>Make sure to handle potential errors that may arise from invalid input or server issues, which will be communicated through appropriate HTTP status codes and error messages.</p>\n","urlObject":{"path":["rest","insured","65b67a17c0c9c80a80e87e71"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"cab1c40e-9468-437c-9a2e-2db3b77d9b80","name":"Insured id - Meta Data - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"corporateName\": \"EditedBorrowerName-104503594\",\n    \"type\": \"corporate\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured/65b67a17c0c9c80a80e87e71"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:35:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"564"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"65b67a17c0c9c80a80e87e71\",\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"EditedBorrowerName-807525452\",\n        \"displayName\": \"EditedBorrowerName-807525452\",\n        \"insuredGroup\": null,\n        \"pathName\": \"EditedBorrowerName-807525452\",\n        \"createdAt\": \"2024-01-28T16:00:23.254Z\",\n        \"updatedAt\": \"2025-06-18T18:35:05.507Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"3f566bb4-867e-4f54-b2b4-fac68020301a"},{"name":"Assets id - Meta Data","event":[{"listen":"test","script":{"id":"08574cea-4619-4a54-8112-f3eecebf1f39","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"5a1537c7-29fc-4cdc-807a-b30833ef5336","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"fields\": [\n    {\n        \"fieldType\": \"608701fdf2e8e800041efe21\",\n        \"value\": {\n            \"streetAddress\": \"138 Wooster Street\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"postalCode\": \"10012\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"138 Wooster Street, New York, NY 10012\"\n        }\n    },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": true\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 232223\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 233223\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 2\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 33223\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"No Construction\"\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 10000\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 10\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": true\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 10\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 23233232\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 10000\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n  ],\n  \"documents\": [\n    \"6750239dbc0b293e7c24eba4\"\n  ],\n    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788","description":"<h2 id=\"patch-restassetsassetid\">PATCH /rest/assets/66ffb0b7d606ee60bfd67788</h2>\n<p>This endpoint allows you to update the details of a specific asset identified by <code>66ffb0b7d606ee60bfd67788</code>. The request modifies various fields associated with the asset, including address information and metadata.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be in JSON format and contains the following parameters:</p>\n<ul>\n<li><p><strong>fields</strong>: An array of objects representing the fields to be updated.</p>\n<ul>\n<li><p><strong>fieldType</strong>: A string that identifies the type of the field being updated.</p>\n</li>\n<li><p><strong>value</strong>: An object containing the address details:</p>\n<ul>\n<li><p><strong>streetAddress</strong>: The street address of the asset.</p>\n</li>\n<li><p><strong>city</strong>: The city where the asset is located.</p>\n</li>\n<li><p><strong>state</strong>: The state where the asset is located.</p>\n</li>\n<li><p><strong>postalCode</strong>: The postal code for the asset's location.</p>\n</li>\n<li><p><strong>country</strong>: The country where the asset is located.</p>\n</li>\n<li><p><strong>formattedAddress</strong>: A string that provides a formatted version of the address.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>documents</strong>: An array of document IDs associated with the asset. Each ID should be a string.</p>\n</li>\n<li><p><strong>metadata</strong>: An object containing various metadata fields related to the asset. The keys can include:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong>: A string for additional metadata.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong>: A longer string for extended metadata.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong>: A standard string for metadata.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong>: A string that contains numbers only.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong>: A string that may include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will typically include a confirmation of the update operation, along with the updated asset details. The exact structure of the response may vary, but it generally confirms the successful update of the asset and may include the updated fields and metadata.</p>\n<p>Ensure that all required fields are included in the request body to avoid errors during the update process.</p>\n","urlObject":{"path":["rest","assets","66ffb0b7d606ee60bfd67788"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"d5ca359f-3925-4b2c-9160-c4508bd48a78","name":"Assets id - Meta Data - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"fields\": [\n    {\n        \"fieldType\": \"608701fdf2e8e800041efe21\",\n        \"value\": {\n            \"streetAddress\": \"138 Wooster Street\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"postalCode\": \"10012\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"138 Wooster Street, New York, NY 10012\"\n        }\n    },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": true\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 232223\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 233223\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 2\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 33223\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"No Construction\"\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 10000\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 10\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": true\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 10\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 23233232\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 10000\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n  ],\n  \"documents\": [\n    \"6750239dbc0b293e7c24eba4\"\n  ],\n    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:35:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5202"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f1799c8ebe5a650492cf\",\n        \"caseId\": \"6852f1789c8ebe5a65048d81\",\n        \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"138 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"state\": \"NY\",\n                    \"postalCode\": \"10012\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": true\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 232223\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 233223\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 2\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 33223\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"No Construction\"\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 10000\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 10\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": true\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 10\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 23233232\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 10000\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:03:53.539Z\",\n        \"updatedAt\": \"2025-06-18T18:35:16.556Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"5a1537c7-29fc-4cdc-807a-b30833ef5336"},{"name":"Assets - Meta Data - Filtering","event":[{"listen":"test","script":{"id":"5acc7863-901f-4480-8d16-d72226a28db8","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"24a7c0d4-dd43-430d-bb80-cbcf36bbd7dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/assets?metadata.Three-MetaDataString[eq]=MetaDataStringTest","description":"<h2 id=\"get-restassetsmetadatathree-metadatastringeqmetadatastringtest\">GET /rest/assets?metadata.Three-MetaDataString[eq]=MetaDataStringTest</h2>\n<p>This endpoint retrieves asset information based on specific metadata criteria. The request allows users to filter assets by a particular metadata string.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>metadata.Three-MetaDataString[eq]</strong>: (string) This parameter is used to filter the assets by checking if the <code>Three-MetaDataString</code> field is equal to the specified value, in this case, <code>MetaDataStringTest</code>.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>The response will include a list of assets that match the specified metadata criteria. Each asset object in the response will contain relevant details such as asset ID, name, and other associated metadata.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the metadata string used in the query is correctly formatted to avoid any errors in retrieving the assets.</p>\n</li>\n<li><p>The response may vary based on the availability of assets that meet the filtering criteria.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}],"variable":[]}},"response":[{"id":"e3aef7d9-d2e7-4506-ad92-16f36a36243f","name":"Assets - Meta Data - Filtering - Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/assets?metadata.Three-MetaDataString[eq]=MetaDataStringTest","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","assets"],"query":[{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:35:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"43223"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 8,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"68495f8b356b48fee1dda6f7\",\n            \"caseId\": \"68495f8a356b48fee1dda44d\",\n            \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"10012\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 232223\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 233223\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 2\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 33223\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 23233232\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-11T10:50:51.687Z\",\n            \"updatedAt\": \"2025-06-11T13:09:56.752Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495c5d356b48fee1dd27c1\",\n            \"caseId\": \"68495c5c356b48fee1dd2517\",\n            \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"10012\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 232223\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 233223\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 2\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 33223\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 23233232\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-11T10:37:17.360Z\",\n            \"updatedAt\": \"2025-06-11T10:51:01.250Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495309356b48fee1dbd941\",\n            \"caseId\": \"68495308356b48fee1dbd697\",\n            \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"10012\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 232223\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 233223\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 2\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 33223\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 23233232\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-11T09:57:29.106Z\",\n            \"updatedAt\": \"2025-06-11T10:37:26.818Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68494e48356b48fee1cc8980\",\n            \"caseId\": \"6750239bbc0b293e7c24e8db\",\n            \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"60db1c67687e130004f8885e\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"10012\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 232223\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 233223\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 2\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 33223\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 23233232\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-11T09:37:12.198Z\",\n            \"updatedAt\": \"2025-06-11T09:37:23.557Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480b788eaef76bd32b6607\",\n            \"caseId\": \"68480b778eaef76bd32b635e\",\n            \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"60db1c67687e130004f8885e\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"10012\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 232223\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 233223\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 2\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 33223\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": true\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 10\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 23233232\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 10000\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-10T10:39:52.156Z\",\n            \"updatedAt\": \"2025-06-11T09:57:42.235Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6848069e8eaef76bd32b41ed\",\n            \"caseId\": \"6848069d8eaef76bd32b3f44\",\n            \"displayName\": \"138 Wooster Street,3rd,New York,NY,10012\",\n            \"assetType\": \"60db1c67687e130004f8885e\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"secondaryAddress\": \"3rd\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"US\",\n                        \"formattedAddress\": \"138 Wooster Street,3rd,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1000000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 500000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 250000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 2500000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 250000\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-10T10:19:10.599Z\",\n            \"updatedAt\": \"2025-06-10T10:19:10.599Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847a0218eaef76bd32ac3bf\",\n            \"caseId\": \"6847a0218eaef76bd32ac116\",\n            \"displayName\": \"138 Wooster Street,3rd,New York,NY,10012\",\n            \"assetType\": \"60db1c67687e130004f8885e\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"secondaryAddress\": \"3rd\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"US\",\n                        \"formattedAddress\": \"138 Wooster Street,3rd,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1000000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 500000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 250000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 2500000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 250000\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-10T03:01:53.784Z\",\n            \"updatedAt\": \"2025-06-10T03:01:53.784Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847973a8eaef76bd31a5d47\",\n            \"caseId\": \"684797398eaef76bd31a5a9e\",\n            \"displayName\": \"138 Wooster Street,3rd,New York,NY,10012\",\n            \"assetType\": \"60db1c67687e130004f8885e\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"secondaryAddress\": \"3rd\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"US\",\n                        \"formattedAddress\": \"138 Wooster Street,3rd,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1000000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 500000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 250000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 2500000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"No Construction\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 250000\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-10T02:23:54.416Z\",\n            \"updatedAt\": \"2025-06-10T02:23:54.416Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        }\n    ]\n}"}],"_postman_id":"24a7c0d4-dd43-430d-bb80-cbcf36bbd7dd"},{"name":"Case id  - Meta Data","event":[{"listen":"test","script":{"id":"c457fb0c-29ae-4222-b718-14b04605a002","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"a4b7f23d-66d6-43f1-8002-8c404581a9d7","exec":["function generatenameString() {","    const timeStamp = new Date().toISOString();","    const name = `Edit Case Name Test ${timeStamp}`; ","","    pm.collectionVariables.set(\"editedname\", name);","}","","generatenameString();",""],"type":"text/javascript","packages":{}}}],"id":"3a1041c6-7cf2-43f9-8a81-29c4590585a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Edit Case Name Test 2024-12-04T09:40:58.693Z\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db","description":"<h3 id=\"update-case-information\">Update Case Information</h3>\n<p>This endpoint allows you to update the details of a specific case identified by <code>firstCaseIdInARow</code>.</p>\n<h4 id=\"request-format\">Request Format</h4>\n<ul>\n<li><p><strong>Method</strong>: PATCH</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db</code></p>\n</li>\n<li><p><strong>Request Body</strong>: The request body must be in JSON format and should include the following fields:</p>\n<ul>\n<li><p><code>name</code> (string): The updated name of the case.</p>\n</li>\n<li><p><code>metadata</code> (object): An object containing various metadata fields:</p>\n<ul>\n<li><p><code>One-MetaDataEmptyString</code> (string): A metadata field that can be an empty string.</p>\n</li>\n<li><p><code>Two-MetaDataLongString</code> (string): A metadata field that accepts a long string.</p>\n</li>\n<li><p><code>Three-MetaDataString</code> (string): A metadata field for a standard string.</p>\n</li>\n<li><p><code>Four-MetaDataNumbersOnly</code> (string): A metadata field that should only contain numbers.</p>\n</li>\n<li><p><code>Five-MetaDataSpecialChars</code> (string): A metadata field that can include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"expected-response-format\">Expected Response Format</h4>\n<p>Upon a successful update, the response will typically contain the updated case information in JSON format. The structure of the response will mirror the request body, confirming the changes made to the case's name and metadata.</p>\n<p>Ensure that all required fields are present and correctly formatted to avoid errors during the update process.</p>\n","urlObject":{"path":["rest","cases","6750239bbc0b293e7c24e8db"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"168b9bb1-76fa-43d5-8502-5ba7c8c9984b","name":"Case id  - Meta Data - Responses","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Edit Case Name Test 2024-12-04T09:40:58.693Z\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:36:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"991"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"2"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685306299c8ebe5a6504e3d7\",\n        \"externalId\": \"758188486-700472372\",\n        \"name\": \"Edit Case Name Test 2025-06-18T18:36:36.031Z\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6853064e9c8ebe5a6504e6b1\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T19:32:08.911Z\",\n        \"expectedMaturingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T18:32:09.408Z\",\n        \"updatedAt\": \"2025-06-18T18:36:36.238Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"3a1041c6-7cf2-43f9-8a81-29c4590585a1"},{"name":"Documents  - Meta Data - Filtering","event":[{"listen":"test","script":{"id":"77a2501d-f6a2-4115-8333-329c5a94b6b8","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('documentId', responseData.data[0].id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"50662fa4-5221-46cb-854b-5d28744c2434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/documents?metadata.Three-MetaDataString[eq]=MetaDataStringTest","description":"<h3 id=\"api-request-description\">API Request Description</h3>\n<p>This endpoint retrieves documents based on specified metadata criteria.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://api-v2-test.tryadvocate.com/rest/documents</code></p>\n</li>\n</ul>\n<h4 id=\"query-parameters\">Query Parameters</h4>\n<ul>\n<li><code>metadata.Three-MetaDataString[eq]</code>: This parameter is used to filter the documents by a specific metadata string. The value should match the desired metadata string you are looking for.</li>\n</ul>\n<h4 id=\"expected-response-format\">Expected Response Format</h4>\n<p>The response will typically be in JSON format, containing an array of documents that match the specified metadata criteria. Each document object will include various properties related to the document's metadata and content.</p>\n<p>Ensure to handle the response appropriately based on your application's requirements.</p>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}],"variable":[]}},"response":[{"id":"7773ef6c-6df6-42eb-8efb-4dd861a60499","name":"Documents  - Meta Data - Filtering - Responses","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/documents?metadata.Three-MetaDataString[eq]=MetaDataStringTest","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","documents"],"query":[{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:37:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18567"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 18,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"6853064e9c8ebe5a6504e6b1\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"685306299c8ebe5a6504e3d7\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T18:32:46.192Z\",\n            \"updatedAt\": \"2025-06-18T18:32:46.192Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684aab2ed6a91c15ef16e71c\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"684aab2dd6a91c15ef16e44b\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-12T10:25:50.836Z\",\n            \"updatedAt\": \"2025-06-12T10:26:08.039Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a3a59084a00665f5a62de\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"684a3a58084a00665f5a6004\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-12T02:24:25.543Z\",\n            \"updatedAt\": \"2025-06-12T03:01:06.147Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684999c9084a00665f59d6eb\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"684999c7084a00665f59d41a\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T14:59:21.107Z\",\n            \"updatedAt\": \"2025-06-11T14:59:32.103Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68499839084a00665f596bea\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68499838084a00665f596919\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T14:52:41.577Z\",\n            \"updatedAt\": \"2025-06-11T14:52:52.345Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68499557084a00665f4b95b9\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68499555084a00665f4b835a\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T14:40:23.773Z\",\n            \"updatedAt\": \"2025-06-11T14:41:00.753Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68498567a0b0d30e2c646484\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68498563a0b0d30e2c6454f7\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T13:32:23.557Z\",\n            \"updatedAt\": \"2025-06-11T13:32:23.557Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849829ea0b0d30e2c56f1cb\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6849829ca0b0d30e2c56eefa\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T13:20:30.498Z\",\n            \"updatedAt\": \"2025-06-11T13:20:46.698Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68498013a0b0d30e2c568e1a\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68498010a0b0d30e2c567cfd\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T13:09:39.783Z\",\n            \"updatedAt\": \"2025-06-11T13:10:31.971Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495f8d356b48fee1dda727\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68495f8a356b48fee1dda44d\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T10:50:53.145Z\",\n            \"updatedAt\": \"2025-06-11T12:56:25.516Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495c5f356b48fee1dd27f1\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68495c5c356b48fee1dd2517\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T10:37:19.710Z\",\n            \"updatedAt\": \"2025-06-11T10:37:42.603Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849530b356b48fee1dbd971\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68495308356b48fee1dbd697\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T09:57:31.115Z\",\n            \"updatedAt\": \"2025-06-11T09:58:17.710Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849529f356b48fee1db9d73\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6849529b356b48fee1db9a99\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T09:55:43.197Z\",\n            \"updatedAt\": \"2025-06-11T09:55:43.197Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495271356b48fee1db9979\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6849526d356b48fee1db969f\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T09:54:57.024Z\",\n            \"updatedAt\": \"2025-06-11T09:54:57.024Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495204356b48fee1db8fe8\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"68495201356b48fee1db8d0e\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-11T09:53:08.831Z\",\n            \"updatedAt\": \"2025-06-11T09:53:08.831Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        }\n    ]\n}"}],"_postman_id":"50662fa4-5221-46cb-854b-5d28744c2434"},{"name":"Documents - Meta Data","event":[{"listen":"test","script":{"id":"b196a0a0-542e-480d-aa1a-f41649a4b9e9","exec":["const responseData = pm.response.json().data[0];","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"4c21a407-cd5d-4120-b25f-87db47b46c2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"docs\":\n    [\n        {\n            \"id\": \"6750239dbc0b293e7c24eba4\",\n                    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n        }\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h3 id=\"patch-restdocuments\">PATCH /rest/documents</h3>\n<p>This endpoint allows you to update the metadata of existing documents in the system. It is specifically designed to modify the properties of documents identified by their unique IDs.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should contain the following structure:</p>\n<ul>\n<li><p><code>docs</code> (Array): A list of document objects to be updated.</p>\n<ul>\n<li><p><code>id</code> (String): The unique identifier of the document that you want to update.</p>\n</li>\n<li><p><code>metadata</code> (Object): An object containing the metadata fields to be updated. The following keys are expected:</p>\n<ul>\n<li><p><code>One-MetaDataEmptyString</code> (String): A string representing the first metadata entry.</p>\n</li>\n<li><p><code>Two-MetaDataLongString</code> (String): A string representing the second metadata entry.</p>\n</li>\n<li><p><code>Three-MetaDataString</code> (String): A string representing the third metadata entry.</p>\n</li>\n<li><p><code>Four-MetaDataNumbersOnly</code> (String): A string representing the fourth metadata entry, which should contain numbers only.</p>\n</li>\n<li><p><code>Five-MetaDataSpecialChars</code> (String): A string representing the fifth metadata entry, which may include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the updated document information, confirming the successful update of the specified metadata fields. The structure of the response will align with the input parameters, providing feedback on the changes made.</p>\n<p>Make sure to include all required fields in the request to ensure a successful update of the document metadata.</p>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"30dbfa4b-0405-4248-8413-2e6c58438d81","name":"Documents - Meta Data - Responses","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{ \n    \"docs\":\n    [\n        {\n            \"id\": \"6750239dbc0b293e7c24eba4\",\n                    \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n        }\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:37:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1046"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6853064e9c8ebe5a6504e6b1\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"685306299c8ebe5a6504e3d7\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T18:32:46.192Z\",\n            \"updatedAt\": \"2025-06-18T18:37:21.987Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\",\n                \"Two-MetaDataLongString\": \"Meta String  Two\",\n                \"Three-MetaDataString\": \"Meta String Three\",\n                \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n                \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n            }\n        }\n    ]\n}"}],"_postman_id":"4c21a407-cd5d-4120-b25f-87db47b46c2a"},{"name":"Insurance Contact broker - Meta Data","event":[{"listen":"test","script":{"id":"b07a6442-22b2-4196-848d-c34cd73b294c","exec":["const jsonData = pm.response.json().data;","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"9154251f-da69-4e25-be30-d50ccf027e3c","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBrokerICNumber', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"0e2d2d89-2eee-46da-bc4e-9fb66e8f5a40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamee+853947811-667789131@tryadvocate.com\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts","description":"<h2 id=\"add-insurance-contact\">Add Insurance Contact</h2>\n<p>This endpoint allows you to add a new insurance contact to the system. The request must be sent as a POST request to <code>https://api-v2-test.tryadvocate.com/rest/insurance-contacts</code> with a JSON payload containing the contact details.</p>\n<h3 id=\"request-body-parameters\">Request Body Parameters</h3>\n<p>The request body should be formatted as JSON and include the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the insurance contact (e.g., a broker).</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the contact, which should be specified as \"broker\".</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the insurance contact.</p>\n</li>\n<li><p><strong>metadata</strong> (object): An object containing additional metadata about the contact, which includes:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong> (string): A string that may be empty.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong> (string): A longer descriptive string.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong> (string): A general string for additional information.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong> (string): A string that contains only numbers.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong> (string): A string that includes special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a response indicating the status of the operation. The response will typically include details about the newly created insurance contact, such as its unique identifier and the data provided.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that all required fields are populated correctly to avoid validation errors.</p>\n</li>\n<li><p>The email must be in a valid format to be accepted by the system.</p>\n</li>\n<li><p>The metadata object can contain various types of information, and it is advisable to adhere to the expected formats for each key.</p>\n</li>\n</ul>\n<p>This endpoint is essential for managing insurance contacts within the application, facilitating the addition of brokers and their associated details.</p>\n","urlObject":{"path":["rest","insurance-contacts"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"2854e62c-84db-41cf-ad32-0e47c8cf3303","name":"Insurance Contact broker - Meta Data - Responses","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamee+853947811-667789131@tryadvocate.com\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:37:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"470"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6853076b9c8ebe5a6504edf3\",\n        \"name\": \"BrokerName744612516-399375739\",\n        \"type\": \"broker\",\n        \"email\": \"brokernamee+744612516-399375739@tryadvocate.com\",\n        \"createdAt\": \"2025-06-18T18:37:31.513Z\",\n        \"updatedAt\": \"2025-06-18T18:37:31.513Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"0e2d2d89-2eee-46da-bc4e-9fb66e8f5a40"},{"name":"Insurance Contact  - Meta Data - Filtering","event":[{"listen":"test","script":{"id":"8d636757-472f-4131-ad0c-658077c3bf01","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"528ecbd6-2ee0-46d1-bd13-27772c525c6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts?limit=44&metadata.Three-MetaDataString[eq]=MetaDataStringTest","description":"<h2 id=\"endpoint-description\">Endpoint Description</h2>\n<p>This endpoint retrieves a list of insurance contacts from the system. It allows users to specify a limit on the number of results returned and filter the results based on specific metadata criteria.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insurance-contacts</code></p>\n</li>\n<li><p><strong>Query Parameters</strong>:</p>\n<ul>\n<li><p><code>limit</code> (integer): Specifies the maximum number of insurance contacts to return. In this case, the limit is set to 44.</p>\n</li>\n<li><p><code>metadata.Three-MetaDataString[eq]</code> (string): A filter to match contacts where the <code>Three-MetaDataString</code> equals <code>MetaDataStringTest</code>.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li><p><strong>Authorization</strong>: Required. Include a valid token to authenticate the request.</p>\n</li>\n<li><p><strong>Content-Type</strong>: <code>application/json</code> (if applicable).</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be in JSON format and will include the following structure:</p>\n<ul>\n<li><p><code>data</code> (array): An array of insurance contact objects that match the query criteria.</p>\n<ul>\n<li><p>Each contact object may contain the following fields:</p>\n<ul>\n<li><p><code>id</code> (string): Unique identifier for the contact.</p>\n</li>\n<li><p><code>name</code> (string): Name of the contact.</p>\n</li>\n<li><p><code>email</code> (string): Email address of the contact.</p>\n</li>\n<li><p><code>phone</code> (string): Phone number of the contact.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>metadata</code> (object): Contains additional information about the response, such as total count of records and pagination details.</p>\n</li>\n</ul>\n<h3 id=\"example-response-structure\">Example Response Structure</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": [\n    {\n      \"id\": \"contact_id_1\",\n      \"name\": \"Contact Name 1\",\n      \"email\": \"contact1@example.com\",\n      \"phone\": \"123-456-7890\"\n    },\n    {\n      \"id\": \"contact_id_2\",\n      \"name\": \"Contact Name 2\",\n      \"email\": \"contact2@example.com\",\n      \"phone\": \"098-765-4321\"\n    }\n  ],\n  \"metadata\": {\n    \"total\": 100,\n    \"limit\": 44,\n    \"offset\": 0\n  }\n}\n\n</code></pre>\n<p>This endpoint is useful for applications that need to display or manage insurance contacts based on specific metadata criteria.</p>\n","urlObject":{"path":["rest","insurance-contacts"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"limit","value":"44"},{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}],"variable":[]}},"response":[{"id":"a707629b-514e-4609-87b0-88595e0d15aa","name":"Insurance Contact  - Meta Data - Filtering - Responses","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts?limit=44&metadata.Three-MetaDataString[eq]=MetaDataStringTest","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","insurance-contacts"],"query":[{"key":"limit","value":"44"},{"key":"metadata.Three-MetaDataString[eq]","value":"MetaDataStringTest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:37:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"20252"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 31,\n        \"limit\": 44,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"684aab35d6a91c15ef16ea48\",\n            \"name\": \"BrokerName459935334-507803792\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+459935334-507803792@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T10:25:57.670Z\",\n            \"updatedAt\": \"2025-06-12T10:25:57.670Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a42ec084a00665f6b8857\",\n            \"name\": \"BrokerName676033832-715085593\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+676033832-715085593@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T03:01:00.223Z\",\n            \"updatedAt\": \"2025-06-12T03:01:00.223Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a3a60084a00665f5a6640\",\n            \"name\": \"BrokerName717599868-957943466\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+717599868-957943466@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T02:24:32.433Z\",\n            \"updatedAt\": \"2025-06-12T02:24:32.433Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684999ce084a00665f59da17\",\n            \"name\": \"BrokerName891958153-814947313\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+891958153-814947313@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:59:26.053Z\",\n            \"updatedAt\": \"2025-06-11T14:59:26.053Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849983e084a00665f596f16\",\n            \"name\": \"BrokerName874617586-755488020\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+874617586-755488020@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:52:46.045Z\",\n            \"updatedAt\": \"2025-06-11T14:52:46.045Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849956b084a00665f4c07b6\",\n            \"name\": \"BrokerName331603620-123381622\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+331603620-123381622@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:40:43.756Z\",\n            \"updatedAt\": \"2025-06-11T14:40:43.756Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68498e94a0b0d30e2c68b85a\",\n            \"name\": \"BrokerName259955134-421081110\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+259955134-421081110@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:11:32.082Z\",\n            \"updatedAt\": \"2025-06-11T14:11:32.082Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684982a5a0b0d30e2c56f51b\",\n            \"name\": \"BrokerName168453407-599994496\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+168453407-599994496@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T13:20:37.095Z\",\n            \"updatedAt\": \"2025-06-11T13:20:37.095Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849802ca0b0d30e2c569fe2\",\n            \"name\": \"BrokerName225631544-362439731\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+225631544-362439731@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T13:10:04.757Z\",\n            \"updatedAt\": \"2025-06-11T13:10:04.757Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68497d06a0b0d30e2c46f54e\",\n            \"name\": \"broker\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+470863553-322015139@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T12:56:38.722Z\",\n            \"updatedAt\": \"2025-06-11T13:10:37.573Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68497cf9a0b0d30e2c46e909\",\n            \"name\": \"BrokerName893358800-255385189\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+893358800-255385189@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T12:56:25.796Z\",\n            \"updatedAt\": \"2025-06-11T12:56:25.796Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68496fc81c67c221e8a9a226\",\n            \"name\": \"BrokerName975492982-156353200\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+975492982-156353200@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T12:00:08.507Z\",\n            \"updatedAt\": \"2025-06-11T12:00:08.507Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495f97356b48fee1ddad1a\",\n            \"name\": \"BrokerName684533359-326816499\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+684533359-326816499@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T10:51:03.685Z\",\n            \"updatedAt\": \"2025-06-11T10:51:03.685Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495c7a356b48fee1dd3778\",\n            \"name\": \"broker\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+620530115-813181066@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T10:37:46.382Z\",\n            \"updatedAt\": \"2025-06-11T10:51:23.919Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495c69356b48fee1dd2dc5\",\n            \"name\": \"BrokerName672702445-175695130\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+672702445-175695130@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T10:37:29.109Z\",\n            \"updatedAt\": \"2025-06-11T10:37:29.109Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495343356b48fee1dbe899\",\n            \"name\": \"broker\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+634069881-993830351@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T09:58:27.222Z\",\n            \"updatedAt\": \"2025-06-11T10:37:47.110Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849531a356b48fee1dbdf25\",\n            \"name\": \"BrokerName981724961-286982677\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+981724961-286982677@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T09:57:46.437Z\",\n            \"updatedAt\": \"2025-06-11T09:57:46.437Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68494ed2356b48fee1cdb93a\",\n            \"name\": \"broker\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+413587769-956280912@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T09:39:30.640Z\",\n            \"updatedAt\": \"2025-06-11T09:58:28.283Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68494e4f356b48fee1cc8daf\",\n            \"name\": \"BrokerName944100165-190624933\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+944100165-190624933@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T09:37:19.685Z\",\n            \"updatedAt\": \"2025-06-11T09:37:19.685Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480f9c8eaef76bd32b7978\",\n            \"name\": \"BrokerName919327440-987361896\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+919327440-987361896@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T10:57:32.374Z\",\n            \"updatedAt\": \"2025-06-10T10:57:32.374Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480c928eaef76bd32b6f70\",\n            \"name\": \"broker\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+507142565-481330910@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T10:44:34.540Z\",\n            \"updatedAt\": \"2025-06-10T10:57:50.071Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480c828eaef76bd32b6c3f\",\n            \"name\": \"BrokerName350890476-992619546\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+350890476-992619546@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T10:44:18.346Z\",\n            \"updatedAt\": \"2025-06-10T10:44:18.346Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480c2d8eaef76bd32b6b0d\",\n            \"name\": \"broker\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+406673390-767363629@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T10:42:53.692Z\",\n            \"updatedAt\": \"2025-06-10T10:44:35.264Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68480b828eaef76bd32b67a7\",\n            \"name\": \"BrokerName583863112-395101839\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+583863112-395101839@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T10:40:02.813Z\",\n            \"updatedAt\": \"2025-06-10T10:40:02.813Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684806b98eaef76bd32b4642\",\n            \"name\": \"broker\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+649894188-189789654@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T10:19:37.633Z\",\n            \"updatedAt\": \"2025-06-10T10:40:19.806Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684806a98eaef76bd32b4311\",\n            \"name\": \"BrokerName552581895-299247611\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+552581895-299247611@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T10:19:21.242Z\",\n            \"updatedAt\": \"2025-06-10T10:19:21.242Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847a0288eaef76bd32ac89c\",\n            \"name\": \"broker\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+348847492-475113976@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T03:02:00.867Z\",\n            \"updatedAt\": \"2025-06-10T10:19:38.383Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847a0248eaef76bd32ac564\",\n            \"name\": \"BrokerName318953605-946872813\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+318953605-946872813@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T03:01:56.479Z\",\n            \"updatedAt\": \"2025-06-10T03:01:56.479Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6847974d8eaef76bd31a6286\",\n            \"name\": \"broker\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+925219517-108687125@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T02:24:13.020Z\",\n            \"updatedAt\": \"2025-06-10T03:02:01.061Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684797418eaef76bd31a5f2d\",\n            \"name\": \"BrokerName296558768-176317687\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+296558768-176317687@tryadvocate.com\",\n            \"createdAt\": \"2025-06-10T02:24:01.733Z\",\n            \"updatedAt\": \"2025-06-10T02:24:01.733Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"683570811abd2f23c84367a4\",\n            \"name\": \"broker\",\n            \"type\": \"other\",\n            \"email\": \"postmanicother@tryadvocate.com\",\n            \"createdAt\": \"2025-05-27T07:57:53.743Z\",\n            \"updatedAt\": \"2025-06-10T02:24:13.513Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        }\n    ]\n}"}],"_postman_id":"528ecbd6-2ee0-46d1-bd13-27772c525c6c"},{"name":"Insurance Contact id  - Meta Data","event":[{"listen":"test","script":{"id":"e9d0decf-87fa-47f7-aa3c-edc5b63ec40d","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"6272c79d-7514-4f9f-a8c8-d9d1c22293e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"name\": \"broker\",\n                \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts/65eecdbf322fdc969c64b990","description":"<h2 id=\"patch-restinsurance-contactsinsurancecontactid\">PATCH /rest/insurance-contacts/65eecdbf322fdc969c64b990</h2>\n<p>This endpoint allows you to update the details of an existing insurance contact identified by <code>insuranceContactId</code>.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the insurance contact. This is a required field.</p>\n</li>\n<li><p><strong>metadata</strong> (object): An object containing additional metadata related to the insurance contact. It can include the following keys:</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong> (string): A metadata field that can be left empty.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong> (string): A metadata field that can contain a longer string.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong> (string): A standard metadata field for additional information.</p>\n</li>\n<li><p><strong>Four-MetaDataNumbersOnly</strong> (string): A metadata field that should only contain numbers.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong> (string): A metadata field that can include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful update, the server will respond with a status code indicating the result of the operation. The response typically includes the updated insurance contact details, confirming that the changes have been applied.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>insuranceContactId</code> in the URL is valid and corresponds to an existing insurance contact.</p>\n</li>\n<li><p>The request should include all necessary fields as per your application requirements to avoid validation errors.</p>\n</li>\n<li><p>This endpoint is part of the RESTful API for managing insurance contacts and follows standard practices for resource updates.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insurance-contacts","65eecdbf322fdc969c64b990"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"b98d96fc-a25c-436f-9c89-652964176b48","name":"Insurance Contact id  - Meta Data - Responses","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n        \"name\": \"broker\",\n                \"metadata\": {\n        \"One-MetaDataEmptyString\": \"Meta String One\",\n        \"Two-MetaDataLongString\": \"Meta String  Two\",\n        \"Three-MetaDataString\": \"Meta String Three\",\n        \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n        \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n    } \n\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts/65eecdbf322fdc969c64b990"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:37:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"418"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"65eecdbf322fdc969c64b990\",\n        \"name\": \"broker\",\n        \"type\": \"other\",\n        \"email\": \"ashwinraa@gmail.com\",\n        \"createdAt\": \"2024-03-11T09:24:16.184Z\",\n        \"updatedAt\": \"2025-06-18T18:37:52.713Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"6272c79d-7514-4f9f-a8c8-d9d1c22293e5"}],"id":"a5625d09-a8be-4fc6-bc6e-56585e05878e","description":"<p>Here you can find information on how to add metadata to requests.</p>\n<p>Only listed request are supprted by meta-data</p>\n","_postman_id":"a5625d09-a8be-4fc6-bc6e-56585e05878e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}}},{"name":"Assets","event":[{"listen":"test","script":{"id":"93b59867-7226-4d9f-b527-eb0088812c01","exec":["const responseData = pm.response.json();","pm.collectionVariables.set(\"assetId\", responseData.data[0].id);","","pm.test(\"Response status code is 200\", function () {","  pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"3f446fd7-25c2-474b-9a18-b28be628d5d1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6e9fd11b-23b2-4b28-ae91-b7a5750eaf67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/assets","description":"<h3 id=\"get-restassets\">GET /rest/assets</h3>\n<p>This endpoint retrieves a list of assets from the server. It is designed to provide users with access to asset data, which may include various attributes related to each asset.</p>\n<h4 id=\"request-format\">Request Format</h4>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>Request Body</strong>: No request body is required for this endpoint.</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will return a JSON object containing an array of asset objects. Each asset object typically includes attributes such as:</p>\n<ul>\n<li><p><code>id</code>: Unique identifier for the asset.</p>\n</li>\n<li><p><code>name</code>: Name of the asset.</p>\n</li>\n<li><p><code>type</code>: Type/category of the asset.</p>\n</li>\n<li><p><code>status</code>: Current status of the asset.</p>\n</li>\n</ul>\n<p>The response will also include metadata about the request, such as pagination information if applicable.</p>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li><p>?caseId[eq]=YourId</p>\n</li>\n<li><p>?id[eq]=YourId</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","assets"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"fde2295a-1885-4ccb-9eb7-796061ff55ce","name":"Assets - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 17:28:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"71915"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"55"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 394,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"6852f1799c8ebe5a650492cf\",\n            \"caseId\": \"6852f1789c8ebe5a65048d81\",\n            \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-18T17:03:53.539Z\",\n            \"updatedAt\": \"2025-06-18T17:03:53.539Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1789c8ebe5a6504902b\",\n            \"caseId\": \"6852f1789c8ebe5a65048d81\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-18T17:03:52.945Z\",\n            \"updatedAt\": \"2025-06-18T17:03:52.945Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1739c8ebe5a650476be\",\n            \"caseId\": \"6852f1729c8ebe5a65047414\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-18T17:03:47.257Z\",\n            \"updatedAt\": \"2025-06-18T17:03:47.257Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1709c8ebe5a65047181\",\n            \"caseId\": \"6852f16f9c8ebe5a65046ed7\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-18T17:03:44.322Z\",\n            \"updatedAt\": \"2025-06-18T17:03:44.322Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f16c9c8ebe5a65046c44\",\n            \"caseId\": \"6852f16c9c8ebe5a6504699a\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-18T17:03:40.883Z\",\n            \"updatedAt\": \"2025-06-18T17:03:40.883Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1699c8ebe5a65046889\",\n            \"caseId\": \"6852f1689c8ebe5a650465df\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-18T17:03:37.601Z\",\n            \"updatedAt\": \"2025-06-18T17:03:37.601Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1679c8ebe5a650464e0\",\n            \"caseId\": \"6852f1679c8ebe5a65046236\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-18T17:03:35.835Z\",\n            \"updatedAt\": \"2025-06-18T17:03:35.835Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68515ba1f2c1645bb0931e3e\",\n            \"caseId\": \"68515b9df2c1645bb0931b1a\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe3d1840abee910c44db\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-17T12:12:17.293Z\",\n            \"updatedAt\": \"2025-06-17T12:12:17.293Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"685139b8f2c1645bb08e0689\",\n            \"caseId\": \"68511d3ef2c1645bb082f318\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe3d1840abee910c44db\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-17T09:47:36.129Z\",\n            \"updatedAt\": \"2025-06-17T09:47:36.129Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68511f18f2c1645bb0830525\",\n            \"caseId\": \"68511d3ef2c1645bb082f318\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe3d1840abee910c44db\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-17T07:54:00.559Z\",\n            \"updatedAt\": \"2025-06-17T07:54:00.559Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68511d16f2c1645bb082f210\",\n            \"caseId\": \"68511cf2f2c1645bb082ee67\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe3d1840abee910c44db\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-17T07:45:26.161Z\",\n            \"updatedAt\": \"2025-06-17T07:45:26.161Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab2dd6a91c15ef16e6f5\",\n            \"caseId\": \"684aab2dd6a91c15ef16e44b\",\n            \"displayName\": \"144 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"144 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"144 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 5555.55\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 5555.55\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 5555.55\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-12T10:25:50.005Z\",\n            \"updatedAt\": \"2025-06-12T10:26:02.102Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab27d6a91c15ef16de61\",\n            \"caseId\": \"684aab26d6a91c15ef16d913\",\n            \"displayName\": \"138 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"138 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"138 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-12T10:25:43.502Z\",\n            \"updatedAt\": \"2025-06-12T10:25:43.502Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab26d6a91c15ef16dbbd\",\n            \"caseId\": \"684aab26d6a91c15ef16d913\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-12T10:25:42.925Z\",\n            \"updatedAt\": \"2025-06-12T10:25:42.925Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab22d6a91c15ef16c85a\",\n            \"caseId\": \"684aab21d6a91c15ef16c5b0\",\n            \"displayName\": \"128 Wooster Street,New York,NY,10012\",\n            \"assetType\": \"677cfe421840abee910c5788\",\n            \"documents\": [],\n            \"fields\": [\n                {\n                    \"fieldType\": \"608701fdf2e8e800041efe21\",\n                    \"key\": \"address\",\n                    \"label\": \"Address\",\n                    \"value\": {\n                        \"streetAddress\": \"128 Wooster Street\",\n                        \"city\": \"New York\",\n                        \"postalCode\": \"10012\",\n                        \"state\": \"NY\",\n                        \"country\": \"United States\",\n                        \"formattedAddress\": \"128 Wooster Street,New York,NY,10012\"\n                    }\n                },\n                {\n                    \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                    \"key\": \"allocatedCaseValue\",\n                    \"label\": \"Unpaid Case Balance / Case Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                    \"key\": \"perAssetAllocatedCaseAmount\",\n                    \"label\": \"Allocated Case Amount\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60db1812687e130004f88857\",\n                    \"key\": \"rcvOfExistingStructure\",\n                    \"label\": \"Replacement Cost Value of Existing Structure\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"60b8ea88137d7700046c9739\",\n                    \"key\": \"annualGrossRent\",\n                    \"label\": \"Effective Gross Income / Business Income Amount\",\n                    \"value\": 1230000\n                },\n                {\n                    \"fieldType\": \"60b8ef00137d7700046c973a\",\n                    \"key\": \"effectiveAge\",\n                    \"label\": \"Effective Age\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                    \"key\": \"renovationType\",\n                    \"label\": \"Renovation Type\",\n                    \"value\": \"Medium Rehab\"\n                },\n                {\n                    \"fieldType\": \"60db1876687e130004f8885a\",\n                    \"key\": \"numberOfUnits\",\n                    \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"642b1884a287770012f72f1d\",\n                    \"key\": \"numberOfBuildings\",\n                    \"label\": \"Number of Buildings\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64e62fab812cda0011895030\",\n                    \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                    \"label\": \"Highest Number Of Stories On The Subject Property\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                    \"key\": \"numberOfStories\",\n                    \"label\": \"Number of Stories\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                    \"key\": \"ageOfRoof\",\n                    \"label\": \"Age of Roof\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                    \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                    \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                    \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                    \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                    \"key\": \"zoningCompliance\",\n                    \"label\": \"Zoning Compliance\",\n                    \"value\": \"Legal Conforming\"\n                },\n                {\n                    \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                    \"key\": \"localOrdinanceThresholdPercentage\",\n                    \"label\": \"Local Ordinance Threshold Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"60a587358aab920004b63254\",\n                    \"key\": \"floodZoneCheck\",\n                    \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644178fa6dac2e001324eca1\",\n                    \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                    \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                    \"value\": 123000\n                },\n                {\n                    \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                    \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                    \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"64417bd96dac2e0013260907\",\n                    \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                    \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                    \"value\": 1\n                },\n                {\n                    \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                    \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                    \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                    \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                    \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"64417ffa6dac2e0013286260\",\n                    \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                    \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644180536dac2e0013287b76\",\n                    \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                    \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181966dac2e0013289d2b\",\n                    \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                    \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"644181656dac2e0013289cc5\",\n                    \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                    \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                    \"value\": false\n                },\n                {\n                    \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                    \"key\": \"sel475\",\n                    \"label\": \"SEL-475\",\n                    \"value\": 123\n                },\n                {\n                    \"fieldType\": \"657b64909661930016d7b543\",\n                    \"key\": \"totalOccupancyPercentage\",\n                    \"label\": \"Total Occupancy Percentage\",\n                    \"value\": 0\n                },\n                {\n                    \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                    \"key\": \"insurableValueOfContents\",\n                    \"label\": \"Insurable Value of Contents\",\n                    \"value\": 12300\n                },\n                {\n                    \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                    \"key\": \"yearBuilt\",\n                    \"label\": \"Year Built\",\n                    \"value\": 2024\n                },\n                {\n                    \"fieldType\": \"669684388fb24dee6b2af01e\",\n                    \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                    \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                    \"value\": false\n                }\n            ],\n            \"createdAt\": \"2025-06-12T10:25:38.024Z\",\n            \"updatedAt\": \"2025-06-12T10:25:38.024Z\",\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"6e9fd11b-23b2-4b28-ae91-b7a5750eaf67"},{"name":"Assets id","event":[{"listen":"test","script":{"id":"cc7f5518-38b2-4079-ab39-b069fc125231","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"30fdeae3-4519-43c1-a053-a05e8ef4661e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"64ea05d7-3174-4cc8-af1e-c707dae23f55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788/fields","description":"<h2 id=\"get-asset-fields\">Get Asset Fields</h2>\n<p>This endpoint retrieves the fields associated with a specific asset identified by the <code>assetId</code>. It is useful for obtaining detailed information about the attributes and metadata of the asset.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><code>assetId</code> (path parameter): The unique identifier of the asset whose fields are to be retrieved. This parameter is required.</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><code>fields</code>: An array of field objects, each representing a specific attribute of the asset. Each field object may include:</p>\n<ul>\n<li><p><code>key</code>: The name of the field.</p>\n</li>\n<li><p><code>value</code>: The value associated with the field.</p>\n</li>\n<li><p><code>type</code>: The data type of the field (e.g., string, number, boolean).</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"fields\": [\n    {\n      \"key\": \"fieldName1\",\n      \"value\": \"fieldValue1\",\n      \"type\": \"string\"\n    },\n    {\n      \"key\": \"fieldName2\",\n      \"value\": 123,\n      \"type\": \"number\"\n    }\n  ]\n}\n\n</code></pre>\n<p>This endpoint is essential for clients needing to programmatically access and utilize asset metadata.</p>\n","urlObject":{"path":["rest","assets","66ffb0b7d606ee60bfd67788","fields"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"22ffd6ce-0217-4b69-b4a0-54f64e976f33","name":"Assets id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:38:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"6802"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"608701fdf2e8e800041efe21\",\n            \"key\": \"address\",\n            \"label\": \"Address\",\n            \"type\": \"address\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the property address that will be insured. This is the property securing the case.\"\n        },\n        {\n            \"id\": \"60b8ea7e137d7700046c9738\",\n            \"key\": \"allocatedCaseValue\",\n            \"label\": \"Unpaid Case Balance / Case Amount\",\n            \"type\": \"currency\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the case amount (if the case is just for one property) or the allocated case amount for this property (if there are multiple properties under the case)\"\n        },\n        {\n            \"id\": \"6596f77f00ac680016cf1bd9\",\n            \"key\": \"perAssetAllocatedCaseAmount\",\n            \"label\": \"Allocated Case Amount\",\n            \"type\": \"currency\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"60db1812687e130004f88857\",\n            \"key\": \"rcvOfExistingStructure\",\n            \"label\": \"Replacement Cost Value of Existing Structure\",\n            \"type\": \"currency\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the Replacement Cost Value as stated in the Appraisal Report, or the Replacement Cost Estimate provided by an insurance provider. Alternative names: Total Estimate of Cost-New, Replacement Cost New, Insurable Value, Insurable Replacement Cost Estimate, Indicated Insurable Replacement Cost. Replacement cost is generally defined as the cost to replace the damaged property with materials of like kind and quality, without any deduction for depreciation.\"\n        },\n        {\n            \"id\": \"60b8ea88137d7700046c9739\",\n            \"key\": \"annualGrossRent\",\n            \"label\": \"Effective Gross Income / Business Income Amount\",\n            \"type\": \"currency\",\n            \"defaultValue\": null,\n            \"hint\": \"HUD 232 Program, please enter the Business Income Amount as given by the Lender\"\n        },\n        {\n            \"id\": \"60b8ef00137d7700046c973a\",\n            \"key\": \"effectiveAge\",\n            \"label\": \"Effective Age\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the Effective Age as stated in the Appraisal Report. Note: This is NOT the same as Actual Age. Effective Age is the age of a building based on its conditions and modifications.\"\n        },\n        {\n            \"id\": \"61bcd2777cd41f001a4ff74f\",\n            \"key\": \"renovationType\",\n            \"label\": \"Renovation Type\",\n            \"type\": \"dropdown\",\n            \"defaultValue\": \"No Construction\",\n            \"hint\": \"Please describe the scope of renovations to be performed on the subject property.\"\n        },\n        {\n            \"id\": \"60db1876687e130004f8885a\",\n            \"key\": \"numberOfUnits\",\n            \"label\": \"Number of Units in Buildings Located in an SFHA\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Please enter in the number of units for this property.\"\n        },\n        {\n            \"id\": \"642b1884a287770012f72f1d\",\n            \"key\": \"numberOfBuildings\",\n            \"label\": \"Number of Buildings\",\n            \"type\": \"number\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"64e62fab812cda0011895030\",\n            \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n            \"label\": \"Highest Number Of Stories On The Subject Property\",\n            \"type\": \"number\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"63ac6323a205ed0011ff1c43\",\n            \"key\": \"numberOfStories\",\n            \"label\": \"Number of Stories\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Please enter in the number of stories for this property.\"\n        },\n        {\n            \"id\": \"61bcd0f87cd41f001a4fbe9f\",\n            \"key\": \"ageOfRoof\",\n            \"label\": \"Age of Roof\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the number of years.\"\n        },\n        {\n            \"id\": \"63d2e9085f9d0b0012dcc1a2\",\n            \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n            \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"63d2e9235f9d0b0012dcc1e4\",\n            \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n            \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"63ac635da205ed0011ff1c85\",\n            \"key\": \"zoningCompliance\",\n            \"label\": \"Zoning Compliance\",\n            \"type\": \"dropdown\",\n            \"defaultValue\": \"Legal Conforming\",\n            \"hint\": \"Indicate the level of zoning compliance for this property.\"\n        },\n        {\n            \"id\": \"64f9d2badfc9c00012156dcc\",\n            \"key\": \"localOrdinanceThresholdPercentage\",\n            \"label\": \"Local Ordinance Threshold Percentage\",\n            \"type\": \"number\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"60a587358aab920004b63254\",\n            \"key\": \"floodZoneCheck\",\n            \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": null,\n            \"hint\": \"Please indicate if the property is in a SFHA flood zone A or V.\"\n        },\n        {\n            \"id\": \"644178fa6dac2e001324eca1\",\n            \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n            \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n            \"type\": \"currency\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"6604677fc5cd3f40d7e6d4a5\",\n            \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n            \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n            \"type\": \"currency\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"64417bd96dac2e0013260907\",\n            \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n            \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n            \"type\": \"number\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"64ff1cbfdfc9c0001287b6d0\",\n            \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n            \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"63ac6314a205ed0011ff1c01\",\n            \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n            \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false,\n            \"hint\": \"Select \\\"Yes\\\" if Equipment Breakdown coverage is required for this property OR if there are HVAC, Elevator or Other Heavy Equipment on the Property\"\n        },\n        {\n            \"id\": \"64417ffa6dac2e0013286260\",\n            \"key\": \"isThePropertyInALocationProneToAvalanches\",\n            \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"644180536dac2e0013287b76\",\n            \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n            \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"644181966dac2e0013289d2b\",\n            \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n            \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"644181656dac2e0013289cc5\",\n            \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n            \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"62a2568d921abc7abc1086e5\",\n            \"key\": \"sel475\",\n            \"label\": \"SEL-475\",\n            \"type\": \"number\",\n            \"defaultValue\": 0,\n            \"hint\": \"Please enter the percentage as a numeric. Ex: enter 20 for 20%. If there is no seismic report, please enter 0.\"\n        },\n        {\n            \"id\": \"657b64909661930016d7b543\",\n            \"key\": \"totalOccupancyPercentage\",\n            \"label\": \"Total Occupancy Percentage\",\n            \"type\": \"number\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"63d2e8bd5f9d0b0012dcb345\",\n            \"key\": \"insurableValueOfContents\",\n            \"label\": \"Insurable Value of Contents\",\n            \"type\": \"currency\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"61bcd0e77cd41f001a4fbe87\",\n            \"key\": \"yearBuilt\",\n            \"label\": \"Year Built\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the year the property was built in.\"\n        },\n        {\n            \"id\": \"669684388fb24dee6b2af01e\",\n            \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n            \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": null\n        }\n    ]\n}"}],"_postman_id":"64ea05d7-3174-4cc8-af1e-c707dae23f55"},{"name":"Assets id","event":[{"listen":"test","script":{"id":"018e9b0d-611e-4734-87bb-68fde57ea20c","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"6833e75a-b60d-42cf-913d-328b526e68e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"144 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"144 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 5555.55\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 5555.55\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 5555.55\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ]\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788","description":"<h3 id=\"patch-restassetsassetid\">PATCH /rest/assets/66ffb0b7d606ee60bfd67788</h3>\n<p>This endpoint allows you to update specific fields of an asset identified by <code>assetId</code>. The request is designed to modify the asset's details by providing the necessary field information in the request body.</p>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<p>The request body must be in JSON format and include the following structure:</p>\n<ul>\n<li><p><strong>fields</strong> (Array of Objects): A list of fields to be updated.</p>\n<ul>\n<li><p><strong>fieldType</strong> (String): The identifier for the type of field being updated.</p>\n</li>\n<li><p><strong>value</strong> (Object): An object containing the new values for the specified field type. The structure of this object may vary based on the field type but typically includes:</p>\n<ul>\n<li><p><strong>streetAddress</strong> (String): The street address of the asset.</p>\n</li>\n<li><p><strong>city</strong> (String): The city where the asset is located.</p>\n</li>\n<li><p><strong>postalCode</strong> (String): The postal code for the asset's address.</p>\n</li>\n<li><p><strong>state</strong> (String): The state where the asset is located.</p>\n</li>\n<li><p><strong>country</strong> (String): The country of the asset's address.</p>\n</li>\n<li><p><strong>formattedAddress</strong> (String): A formatted version of the complete address.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>All vaslues availble under fileldType should be editable.</strong></p>\n<h4 id=\"example-request-body\">Example Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"fields\": [\n    {\n      \"fieldType\": \"608701fdf2e8e800041efe21\",\n      \"value\": {\n        \"streetAddress\": \"144 Wooster Street\",\n        \"city\": \"New York\",\n        \"postalCode\": \"10012\",\n        \"state\": \"NY\",\n        \"country\": \"United States\",\n        \"formattedAddress\": \"144 Wooster Street, New York, NY 10012, United States\"\n      }\n    }\n  ]\n}\n\n</code></pre>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will typically include a confirmation of the update and may return the updated asset details. The exact structure of the response will depend on the implementation but generally includes:</p>\n<ul>\n<li><p><strong>status</strong> (String): The status of the update operation (e.g., \"success\" or \"error\").</p>\n</li>\n<li><p><strong>updatedFields</strong> (Array of Objects): A list of fields that were successfully updated, including their new values.</p>\n</li>\n</ul>\n<p>This endpoint is particularly useful for applications that need to keep asset information current and accurate, allowing for efficient updates without the need to replace the entire asset record.</p>\n","urlObject":{"path":["rest","assets","66ffb0b7d606ee60bfd67788"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"4499de20-d5a3-4668-8e41-b84a7bfe0e9b","name":"Assets id - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\n      \"fields\": [\n        {\n          \"fieldType\": \"608701fdf2e8e800041efe21\",\n          \"value\": {\n            \"streetAddress\": \"144 Wooster Street\",\n            \"city\": \"New York\",\n            \"postalCode\": \"10012\",\n            \"state\": \"NY\",\n            \"country\": \"United States\",\n            \"formattedAddress\": \"144 Wooster Street, New York, NY 10012\"\n          }\n        },\n        {\n          \"fieldType\": \"60b8ea7e137d7700046c9738\",\n          \"value\": 5555.55\n        },\n        {\n          \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n          \"value\": 5555.55\n        },\n        {\n          \"fieldType\": \"60db1812687e130004f88857\",\n          \"value\": 5555.55\n        },\n        {\n          \"fieldType\": \"60b8ea88137d7700046c9739\",\n          \"value\": 1230000\n        },\n        {\n          \"fieldType\": \"60b8ef00137d7700046c973a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n          \"value\": \"Medium Rehab\"\n        },\n        {\n          \"fieldType\": \"60db1876687e130004f8885a\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"642b1884a287770012f72f1d\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64e62fab812cda0011895030\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac635da205ed0011ff1c85\",\n          \"value\": \"Legal Conforming\"\n        },\n        {\n          \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"60a587358aab920004b63254\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644178fa6dac2e001324eca1\",\n          \"value\": 123000\n        },\n        {\n          \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"64417bd96dac2e0013260907\",\n          \"value\": 1\n        },\n        {\n          \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"64417ffa6dac2e0013286260\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644180536dac2e0013287b76\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181966dac2e0013289d2b\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"644181656dac2e0013289cc5\",\n          \"value\": false\n        },\n        {\n          \"fieldType\": \"62a2568d921abc7abc1086e5\",\n          \"value\": 123\n        },\n        {\n          \"fieldType\": \"657b64909661930016d7b543\",\n          \"value\": 0\n        },\n        {\n          \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n          \"value\": 12300\n        },\n        {\n          \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n          \"value\": 2024\n        },\n        {\n          \"fieldType\": \"669684388fb24dee6b2af01e\",\n          \"value\": false\n        }\n      ]\n    }\n  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:39:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5209"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f1799c8ebe5a650492cf\",\n        \"caseId\": \"6852f1789c8ebe5a65048d81\",\n        \"displayName\": \"144 Wooster Street,New York,NY,10012\",\n        \"assetType\": \"677cfe421840abee910c5788\",\n        \"documents\": [],\n        \"fields\": [\n            {\n                \"fieldType\": \"608701fdf2e8e800041efe21\",\n                \"key\": \"address\",\n                \"label\": \"Address\",\n                \"value\": {\n                    \"streetAddress\": \"144 Wooster Street\",\n                    \"city\": \"New York\",\n                    \"postalCode\": \"10012\",\n                    \"state\": \"NY\",\n                    \"country\": \"United States\",\n                    \"formattedAddress\": \"144 Wooster Street,New York,NY,10012\"\n                }\n            },\n            {\n                \"fieldType\": \"60b8ea7e137d7700046c9738\",\n                \"key\": \"allocatedCaseValue\",\n                \"label\": \"Unpaid Case Balance / Case Amount\",\n                \"value\": 5555.55\n            },\n            {\n                \"fieldType\": \"6596f77f00ac680016cf1bd9\",\n                \"key\": \"perAssetAllocatedCaseAmount\",\n                \"label\": \"Allocated Case Amount\",\n                \"value\": 5555.55\n            },\n            {\n                \"fieldType\": \"60db1812687e130004f88857\",\n                \"key\": \"rcvOfExistingStructure\",\n                \"label\": \"Replacement Cost Value of Existing Structure\",\n                \"value\": 5555.55\n            },\n            {\n                \"fieldType\": \"60b8ea88137d7700046c9739\",\n                \"key\": \"annualGrossRent\",\n                \"label\": \"Effective Gross Income / Business Income Amount\",\n                \"value\": 1230000\n            },\n            {\n                \"fieldType\": \"60b8ef00137d7700046c973a\",\n                \"key\": \"effectiveAge\",\n                \"label\": \"Effective Age\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd2777cd41f001a4ff74f\",\n                \"key\": \"renovationType\",\n                \"label\": \"Renovation Type\",\n                \"value\": \"Medium Rehab\"\n            },\n            {\n                \"fieldType\": \"60db1876687e130004f8885a\",\n                \"key\": \"numberOfUnits\",\n                \"label\": \"Number of Units in Buildings Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"642b1884a287770012f72f1d\",\n                \"key\": \"numberOfBuildings\",\n                \"label\": \"Number of Buildings\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64e62fab812cda0011895030\",\n                \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n                \"label\": \"Highest Number Of Stories On The Subject Property\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63ac6323a205ed0011ff1c43\",\n                \"key\": \"numberOfStories\",\n                \"label\": \"Number of Stories\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"61bcd0f87cd41f001a4fbe9f\",\n                \"key\": \"ageOfRoof\",\n                \"label\": \"Age of Roof\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"63d2e9085f9d0b0012dcc1a2\",\n                \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n                \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63d2e9235f9d0b0012dcc1e4\",\n                \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n                \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac635da205ed0011ff1c85\",\n                \"key\": \"zoningCompliance\",\n                \"label\": \"Zoning Compliance\",\n                \"value\": \"Legal Conforming\"\n            },\n            {\n                \"fieldType\": \"64f9d2badfc9c00012156dcc\",\n                \"key\": \"localOrdinanceThresholdPercentage\",\n                \"label\": \"Local Ordinance Threshold Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"60a587358aab920004b63254\",\n                \"key\": \"floodZoneCheck\",\n                \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644178fa6dac2e001324eca1\",\n                \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n                \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n                \"value\": 123000\n            },\n            {\n                \"fieldType\": \"6604677fc5cd3f40d7e6d4a5\",\n                \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n                \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"64417bd96dac2e0013260907\",\n                \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n                \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n                \"value\": 1\n            },\n            {\n                \"fieldType\": \"64ff1cbfdfc9c0001287b6d0\",\n                \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n                \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"63ac6314a205ed0011ff1c01\",\n                \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n                \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"64417ffa6dac2e0013286260\",\n                \"key\": \"isThePropertyInALocationProneToAvalanches\",\n                \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644180536dac2e0013287b76\",\n                \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n                \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181966dac2e0013289d2b\",\n                \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n                \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"644181656dac2e0013289cc5\",\n                \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n                \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n                \"value\": false\n            },\n            {\n                \"fieldType\": \"62a2568d921abc7abc1086e5\",\n                \"key\": \"sel475\",\n                \"label\": \"SEL-475\",\n                \"value\": 123\n            },\n            {\n                \"fieldType\": \"657b64909661930016d7b543\",\n                \"key\": \"totalOccupancyPercentage\",\n                \"label\": \"Total Occupancy Percentage\",\n                \"value\": 0\n            },\n            {\n                \"fieldType\": \"63d2e8bd5f9d0b0012dcb345\",\n                \"key\": \"insurableValueOfContents\",\n                \"label\": \"Insurable Value of Contents\",\n                \"value\": 12300\n            },\n            {\n                \"fieldType\": \"61bcd0e77cd41f001a4fbe87\",\n                \"key\": \"yearBuilt\",\n                \"label\": \"Year Built\",\n                \"value\": 2024\n            },\n            {\n                \"fieldType\": \"669684388fb24dee6b2af01e\",\n                \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n                \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n                \"value\": false\n            }\n        ],\n        \"createdAt\": \"2025-06-18T17:03:53.539Z\",\n        \"updatedAt\": \"2025-06-18T18:39:02.158Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"6833e75a-b60d-42cf-913d-328b526e68e6"},{"name":"Assets id fields","event":[{"listen":"test","script":{"id":"52c3ea7d-243f-4de3-beee-73b48f0661f3","exec":["pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"32bc6f69-1920-4325-b76c-c16c73ddc48c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788/fields","description":"<h3 id=\"api-endpoint-retrieve-asset-fields\">API Endpoint: Retrieve Asset Fields</h3>\n<p>This endpoint allows you to retrieve the fields associated with a specific asset identified by its <code>assetId</code>. It is a GET request that returns detailed information about the asset's fields.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><strong>assetId</strong> (path parameter): The unique identifier for the asset whose fields you want to retrieve. This parameter is required.</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>fields</strong>: An array of field objects, each containing:</p>\n<ul>\n<li><p><strong>key</strong>: The unique identifier for the field.</p>\n</li>\n<li><p><strong>value</strong>: The value associated with the field.</p>\n</li>\n<li><p><strong>type</strong>: The data type of the field (e.g., string, number, boolean).</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>This endpoint is useful for obtaining detailed metadata about a specific asset, which can be utilized in further processing or display within applications.</p>\n","urlObject":{"path":["rest","assets","66ffb0b7d606ee60bfd67788","fields"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"03f00372-f26c-4d2a-a605-758fde43489e","name":"Assets id fields - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/assets/66ffb0b7d606ee60bfd67788/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:39:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"6802"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"997"},{"key":"x-ratelimit-reset","value":"19"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"608701fdf2e8e800041efe21\",\n            \"key\": \"address\",\n            \"label\": \"Address\",\n            \"type\": \"address\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the property address that will be insured. This is the property securing the case.\"\n        },\n        {\n            \"id\": \"60b8ea7e137d7700046c9738\",\n            \"key\": \"allocatedCaseValue\",\n            \"label\": \"Unpaid Case Balance / Case Amount\",\n            \"type\": \"currency\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the case amount (if the case is just for one property) or the allocated case amount for this property (if there are multiple properties under the case)\"\n        },\n        {\n            \"id\": \"6596f77f00ac680016cf1bd9\",\n            \"key\": \"perAssetAllocatedCaseAmount\",\n            \"label\": \"Allocated Case Amount\",\n            \"type\": \"currency\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"60db1812687e130004f88857\",\n            \"key\": \"rcvOfExistingStructure\",\n            \"label\": \"Replacement Cost Value of Existing Structure\",\n            \"type\": \"currency\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the Replacement Cost Value as stated in the Appraisal Report, or the Replacement Cost Estimate provided by an insurance provider. Alternative names: Total Estimate of Cost-New, Replacement Cost New, Insurable Value, Insurable Replacement Cost Estimate, Indicated Insurable Replacement Cost. Replacement cost is generally defined as the cost to replace the damaged property with materials of like kind and quality, without any deduction for depreciation.\"\n        },\n        {\n            \"id\": \"60b8ea88137d7700046c9739\",\n            \"key\": \"annualGrossRent\",\n            \"label\": \"Effective Gross Income / Business Income Amount\",\n            \"type\": \"currency\",\n            \"defaultValue\": null,\n            \"hint\": \"HUD 232 Program, please enter the Business Income Amount as given by the Lender\"\n        },\n        {\n            \"id\": \"60b8ef00137d7700046c973a\",\n            \"key\": \"effectiveAge\",\n            \"label\": \"Effective Age\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the Effective Age as stated in the Appraisal Report. Note: This is NOT the same as Actual Age. Effective Age is the age of a building based on its conditions and modifications.\"\n        },\n        {\n            \"id\": \"61bcd2777cd41f001a4ff74f\",\n            \"key\": \"renovationType\",\n            \"label\": \"Renovation Type\",\n            \"type\": \"dropdown\",\n            \"defaultValue\": \"No Construction\",\n            \"hint\": \"Please describe the scope of renovations to be performed on the subject property.\"\n        },\n        {\n            \"id\": \"60db1876687e130004f8885a\",\n            \"key\": \"numberOfUnits\",\n            \"label\": \"Number of Units in Buildings Located in an SFHA\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Please enter in the number of units for this property.\"\n        },\n        {\n            \"id\": \"642b1884a287770012f72f1d\",\n            \"key\": \"numberOfBuildings\",\n            \"label\": \"Number of Buildings\",\n            \"type\": \"number\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"64e62fab812cda0011895030\",\n            \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n            \"label\": \"Highest Number Of Stories On The Subject Property\",\n            \"type\": \"number\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"63ac6323a205ed0011ff1c43\",\n            \"key\": \"numberOfStories\",\n            \"label\": \"Number of Stories\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Please enter in the number of stories for this property.\"\n        },\n        {\n            \"id\": \"61bcd0f87cd41f001a4fbe9f\",\n            \"key\": \"ageOfRoof\",\n            \"label\": \"Age of Roof\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the number of years.\"\n        },\n        {\n            \"id\": \"63d2e9085f9d0b0012dcc1a2\",\n            \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n            \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"63d2e9235f9d0b0012dcc1e4\",\n            \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n            \"label\": \"Does the Borrower and/or the Property own or use a vehicle or automobile(s) used in conjunction with the operations of the Property/Project?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"63ac635da205ed0011ff1c85\",\n            \"key\": \"zoningCompliance\",\n            \"label\": \"Zoning Compliance\",\n            \"type\": \"dropdown\",\n            \"defaultValue\": \"Legal Conforming\",\n            \"hint\": \"Indicate the level of zoning compliance for this property.\"\n        },\n        {\n            \"id\": \"64f9d2badfc9c00012156dcc\",\n            \"key\": \"localOrdinanceThresholdPercentage\",\n            \"label\": \"Local Ordinance Threshold Percentage\",\n            \"type\": \"number\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"60a587358aab920004b63254\",\n            \"key\": \"floodZoneCheck\",\n            \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": null,\n            \"hint\": \"Please indicate if the property is in a SFHA flood zone A or V.\"\n        },\n        {\n            \"id\": \"644178fa6dac2e001324eca1\",\n            \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n            \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n            \"type\": \"currency\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"6604677fc5cd3f40d7e6d4a5\",\n            \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n            \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n            \"type\": \"currency\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"64417bd96dac2e0013260907\",\n            \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n            \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n            \"type\": \"number\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"64ff1cbfdfc9c0001287b6d0\",\n            \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n            \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"63ac6314a205ed0011ff1c01\",\n            \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n            \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false,\n            \"hint\": \"Select \\\"Yes\\\" if Equipment Breakdown coverage is required for this property OR if there are HVAC, Elevator or Other Heavy Equipment on the Property\"\n        },\n        {\n            \"id\": \"64417ffa6dac2e0013286260\",\n            \"key\": \"isThePropertyInALocationProneToAvalanches\",\n            \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"644180536dac2e0013287b76\",\n            \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n            \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"644181966dac2e0013289d2b\",\n            \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n            \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"644181656dac2e0013289cc5\",\n            \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n            \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": false\n        },\n        {\n            \"id\": \"62a2568d921abc7abc1086e5\",\n            \"key\": \"sel475\",\n            \"label\": \"SEL-475\",\n            \"type\": \"number\",\n            \"defaultValue\": 0,\n            \"hint\": \"Please enter the percentage as a numeric. Ex: enter 20 for 20%. If there is no seismic report, please enter 0.\"\n        },\n        {\n            \"id\": \"657b64909661930016d7b543\",\n            \"key\": \"totalOccupancyPercentage\",\n            \"label\": \"Total Occupancy Percentage\",\n            \"type\": \"number\",\n            \"defaultValue\": null\n        },\n        {\n            \"id\": \"63d2e8bd5f9d0b0012dcb345\",\n            \"key\": \"insurableValueOfContents\",\n            \"label\": \"Insurable Value of Contents\",\n            \"type\": \"currency\",\n            \"defaultValue\": 0\n        },\n        {\n            \"id\": \"61bcd0e77cd41f001a4fbe87\",\n            \"key\": \"yearBuilt\",\n            \"label\": \"Year Built\",\n            \"type\": \"number\",\n            \"defaultValue\": null,\n            \"hint\": \"Enter the year the property was built in.\"\n        },\n        {\n            \"id\": \"669684388fb24dee6b2af01e\",\n            \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n            \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n            \"type\": \"boolean\",\n            \"defaultValue\": null\n        }\n    ]\n}"}],"_postman_id":"32bc6f69-1920-4325-b76c-c16c73ddc48c"},{"name":"Assets Types Id Fields With Filtering","event":[{"listen":"test","script":{"id":"2bdf2f44-c9ef-4817-a46a-95311316770e","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"fc2c793b-6377-44fd-a49c-0933f6fdf67f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/asset-types/asset-typeId/fields?caseId=caseId","description":"<h3 id=\"get-fields-filtered-by-case-or-program\">Get Fields Filtered by Case or Program</h3>\n<p>This is how you can filter asset fileds by its case id or program</p>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>Response contains list of fileds per specific asset type.</p>\n<h4 id=\"parameters-that-can-be-use\">Parameters that can be use</h4>\n<ul>\n<li><p>caseId</p>\n</li>\n<li><p>programId</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","asset-types","asset-typeId","fields"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"caseId","value":"caseId"}],"variable":[]}},"response":[{"id":"0ca4096f-0b11-4b5a-96d6-d725ec452b5d","name":"Assets Types id filtering","originalRequest":{"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/asset-types/asset-typeId/fields?caseId=caseId","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","asset-types","asset-typeId","fields"],"query":[{"key":"caseId","value":"caseId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Dec 2025 13:52:03 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self' unpkg.com;style-src 'self' 'unsafe-inline' fonts.googleapis.com unpkg.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline' 'unsafe-eval' unpkg.com;manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin, accept-encoding"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"998"},{"key":"x-ratelimit-reset","value":"55"},{"key":"content-encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"608701fdf2e8e800041efe21\",\n            \"key\": \"address\",\n            \"type\": \"address\",\n            \"label\": \"Address\",\n            \"options\": null,\n            \"hint\": \"Enter the property address that will be insured. This is the property securing the loan.\"\n        },\n        {\n            \"id\": \"60b8ea7e137d7700046c9738\",\n            \"key\": \"allocatedLoanValue\",\n            \"type\": \"currency\",\n            \"label\": \"Unpaid Loan Balance / Loan Amount\",\n            \"options\": null,\n            \"hint\": \"Enter the loan amount (if the loan is just for one property) or the allocated loan amount for this property (if there are multiple properties under the loan)\"\n        },\n        {\n            \"id\": \"60b8ea88137d7700046c9739\",\n            \"key\": \"annualGrossRent\",\n            \"type\": \"currency\",\n            \"label\": \"Business Income Amount / Effective Gross Income\",\n            \"options\": null,\n            \"hint\": \"HUD 232 Program, please enter the Business Income Amount as given by the Lender\"\n        },\n        {\n            \"id\": \"60b8ef00137d7700046c973a\",\n            \"key\": \"effectiveAge\",\n            \"type\": \"number\",\n            \"label\": \"Effective Age\",\n            \"options\": null,\n            \"hint\": \"Enter the Effective Age as stated in the Appraisal Report. Note: This is NOT the same as Actual Age. Effective Age is the age of a building based on its conditions and modifications.\"\n        },\n        {\n            \"id\": \"60db1812687e130004f88857\",\n            \"key\": \"rcvOfExistingStructure\",\n            \"type\": \"currency\",\n            \"label\": \"Replacement Cost Value of Existing Structure\",\n            \"options\": null,\n            \"hint\": \"Enter the Replacement Cost Value as stated in the Appraisal Report, or the Replacement Cost Estimate provided by an insurance provider. Alternative names: Total Estimate of Cost-New, Replacement Cost New, Insurable Value, Insurable Replacement Cost Estimate, Indicated Insurable Replacement Cost. Replacement cost is generally defined as the cost to replace the damaged property with materials of like kind and quality, without any deduction for depreciation.\"\n        },\n        {\n            \"id\": \"60a587358aab920004b63254\",\n            \"key\": \"floodZoneCheck\",\n            \"type\": \"boolean\",\n            \"label\": \"Is any building on the Property fully or partially located in a Special Flood Hazard Area (SFHA)?\",\n            \"options\": null,\n            \"hint\": \"Please indicate if the property is in a SFHA flood zone A or V.\"\n        },\n        {\n            \"id\": \"64417bd96dac2e0013260907\",\n            \"key\": \"numberOfBuildingsOnThePropertyLocatedInASfha\",\n            \"type\": \"number\",\n            \"label\": \"Number of Buildings on the Property Located in an SFHA\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"60db1876687e130004f8885a\",\n            \"key\": \"numberOfUnits\",\n            \"type\": \"number\",\n            \"label\": \"Number of Units in Buildings Located in an SFHA\",\n            \"options\": null,\n            \"hint\": \"Please enter in the number of units for this property.\"\n        },\n        {\n            \"id\": \"644178fa6dac2e001324eca1\",\n            \"key\": \"effectiveGrossIncomeForBuildingsInAFloodZone\",\n            \"type\": \"currency\",\n            \"label\": \"Effective Gross Income / Business Income Amount for Buildings in an SFHA\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"6604677fc5cd3f40d7e6d4a5\",\n            \"key\": \"fullReplacementCostValueOfBuildingsInAnSfha\",\n            \"type\": \"currency\",\n            \"label\": \"Full Replacement Cost Value of Buildings in an SFHA\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"61bcd0e77cd41f001a4fbe87\",\n            \"key\": \"yearBuilt\",\n            \"type\": \"number\",\n            \"label\": \"Year Built\",\n            \"options\": null,\n            \"hint\": \"Enter the year the property was built in.\"\n        },\n        {\n            \"id\": \"61bcd0f87cd41f001a4fbe9f\",\n            \"key\": \"ageOfRoof\",\n            \"type\": \"number\",\n            \"label\": \"Age of Roof\",\n            \"options\": null,\n            \"hint\": \"Enter the number of years.\"\n        },\n        {\n            \"id\": \"61bcd2777cd41f001a4ff74f\",\n            \"key\": \"renovationType\",\n            \"type\": \"dropdown\",\n            \"label\": \"Renovation Type\",\n            \"options\": [\n                {\n                    \"id\": \"Light/Cosmetic Renovation\",\n                    \"name\": \"Light/Cosmetic Renovation\"\n                },\n                {\n                    \"id\": \"Medium Rehab\",\n                    \"name\": \"Medium Rehab\"\n                },\n                {\n                    \"id\": \"Heavy/Gut Rehab\",\n                    \"name\": \"Heavy/Gut Rehab\"\n                },\n                {\n                    \"id\": \"Ground-up Construction\",\n                    \"name\": \"Ground-up Construction\"\n                },\n                {\n                    \"id\": \"No Construction\",\n                    \"name\": \"No Construction\"\n                }\n            ],\n            \"hint\": \"Please describe the scope of renovations to be performed on the subject property.\"\n        },\n        {\n            \"id\": \"62a2568d921abc7abc1086e5\",\n            \"key\": \"sel475\",\n            \"type\": \"number\",\n            \"label\": \"SEL-475\",\n            \"options\": null,\n            \"hint\": \"Please enter the percentage as a numeric. Ex: enter 20 for 20%. If there is no seismic report, please enter 0.\"\n        },\n        {\n            \"id\": \"63ac6314a205ed0011ff1c01\",\n            \"key\": \"isThereABoilerHvacElevatorAndOrOtherHeavyEquipment\",\n            \"type\": \"boolean\",\n            \"label\": \"Are there steam boilers and/or pressurized systems regulated by the state?\",\n            \"options\": null,\n            \"hint\": \"Select \\\"Yes\\\" if Equipment Breakdown coverage is required for this property OR if there are HVAC, Elevator or Other Heavy Equipment on the Property\"\n        },\n        {\n            \"id\": \"63ac6323a205ed0011ff1c43\",\n            \"key\": \"numberOfStories\",\n            \"type\": \"number\",\n            \"label\": \"Number of Stories\",\n            \"options\": null,\n            \"hint\": \"Please enter in the number of stories for this property.\"\n        },\n        {\n            \"id\": \"63ac635da205ed0011ff1c85\",\n            \"key\": \"zoningCompliance\",\n            \"type\": \"dropdown\",\n            \"label\": \"Zoning Compliance\",\n            \"options\": [\n                {\n                    \"id\": \"Legal Conforming\",\n                    \"name\": \"Legal Conforming\"\n                },\n                {\n                    \"id\": \"Legal Non-Conforming\",\n                    \"name\": \"Legal Non-Conforming\"\n                },\n                {\n                    \"id\": \"Not Legal Non-Conforming\",\n                    \"name\": \"Not Legal Non-Conforming\"\n                }\n            ],\n            \"hint\": \"Indicate the level of zoning compliance for this property.\"\n        },\n        {\n            \"id\": \"63d2e8bd5f9d0b0012dcb345\",\n            \"key\": \"insurableValueOfContents\",\n            \"type\": \"currency\",\n            \"label\": \"Insurable Value of Contents\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"63d2e9085f9d0b0012dcc1a2\",\n            \"key\": \"doesTheBorrowingEntityHaveEmployeesOnSite\",\n            \"type\": \"boolean\",\n            \"label\": \"Does the Borrowing Entity Employ Staff on Site?\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"63d2e9235f9d0b0012dcc1e4\",\n            \"key\": \"doesTheBorrowingEntityOwnAutomobiles\",\n            \"type\": \"boolean\",\n            \"label\": \"Does the Borrower own or use a vehicle or automobile(s) in conjunction with the operations of the Property/Project?\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"642b1884a287770012f72f1d\",\n            \"key\": \"numberOfBuildings\",\n            \"type\": \"number\",\n            \"label\": \"Number of Buildings\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"64417ffa6dac2e0013286260\",\n            \"key\": \"isThePropertyInALocationProneToAvalanches\",\n            \"type\": \"boolean\",\n            \"label\": \"Is/was the Property in a Location Prone to Avalanches?\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"644180536dac2e0013287b76\",\n            \"key\": \"isThePropertyInALocationProneToVolcanicEruption\",\n            \"type\": \"boolean\",\n            \"label\": \"Is/was the Property in a Location Prone to Volcanic Eruption?\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"644181656dac2e0013289cc5\",\n            \"key\": \"isWasThePropertyInTheLocationOfSubterraneanMining\",\n            \"type\": \"boolean\",\n            \"label\": \"Is/was the Property in the Location of Subterranean Mining?\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"644181966dac2e0013289d2b\",\n            \"key\": \"isThePropertyInAnAreaProneToSinkholes\",\n            \"type\": \"boolean\",\n            \"label\": \"Is/was the Property located in an Area Prone to Sinkholes?\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"64e62fab812cda0011895030\",\n            \"key\": \"highestNumberOfStoriesOnThePropertyField\",\n            \"type\": \"number\",\n            \"label\": \"Highest Number Of Stories On The Subject Property\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"64f9d2badfc9c00012156dcc\",\n            \"key\": \"localOrdinanceThresholdPercentage\",\n            \"type\": \"number\",\n            \"label\": \"Local Ordinance Threshold Percentage\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"64ff1cbfdfc9c0001287b6d0\",\n            \"key\": \"isTerrorismPropertyCoverageRequiredForThisProperty\",\n            \"type\": \"boolean\",\n            \"label\": \"Is Terrorism Property Coverage Required for this Property?\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"657b64909661930016d7b543\",\n            \"key\": \"totalOccupancyPercentage\",\n            \"type\": \"number\",\n            \"label\": \"Total Occupancy Percentage\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"6596f77f00ac680016cf1bd9\",\n            \"key\": \"perAssetAllocatedLoanAmount\",\n            \"type\": \"currency\",\n            \"label\": \"Allocated Loan Amount\",\n            \"options\": null,\n            \"hint\": null\n        },\n        {\n            \"id\": \"669684388fb24dee6b2af01e\",\n            \"key\": \"isAlcoholServedOrSoldByTheBorrowerItsAgentsOrAffiliates\",\n            \"type\": \"boolean\",\n            \"label\": \"Is Alcohol Served or Sold by the Borrower, its Agents, or Affiliates?\",\n            \"options\": null,\n            \"hint\": null\n        }\n    ]\n}"}],"_postman_id":"fc2c793b-6377-44fd-a49c-0933f6fdf67f"},{"name":"Assets Types","event":[{"listen":"test","script":{"id":"9dd3c65c-0c24-4b06-a146-bda4b3e1f822","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"f31ff9f0-f797-49f3-b081-50a198df9496","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/asset-types?limit=46","description":"<h3 id=\"get-asset-types\">Get Asset Types</h3>\n<p>This endpoint retrieves a list of asset types from the server. It allows users to specify the maximum number of asset types to be returned using the <code>limit</code> query parameter.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><strong>limit</strong> (integer, optional): Specifies the maximum number of asset types to return. In this case, it is set to <code>46</code>.</li>\n</ul>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>The response will contain a list of asset types, with each asset type represented by its respective properties. The structure of the response may include details such as the asset type ID, name, and any other relevant attributes.</p>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>Ensure that the <code>limit</code> parameter is within acceptable bounds as defined by the API specifications.</p>\n</li>\n<li><p>If the number of available asset types exceeds the specified limit, only the first <code>limit</code> number of asset types will be returned.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","asset-types"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"limit","value":"46"}],"variable":[]}},"response":[{"id":"038b295a-0f89-493e-8dd3-1a9ab8e8d050","name":"Assets Types - Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/asset-types?limit=46","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","asset-types"],"query":[{"key":"limit","value":"46"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:39:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"6220"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 61,\n        \"limit\": 46,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"680ff175efd01a7816cc7fe3\",\n            \"key\": \"boatLocation\",\n            \"name\": \"Boat\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6808b6d098fc50301f6894aa\",\n            \"key\": \"taPlaywrightSingleFamilyHomeLocation\",\n            \"name\": \"TA-Playwright-Single-Family-Home\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6808b6ce98fc50301f688a85\",\n            \"key\": \"taPlaywrightMultiFamilyLocation\",\n            \"name\": \"TA-Playwright-Multi-Family\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6808b6cc98fc50301f6880a7\",\n            \"key\": \"taPlaywrightMixedUseLocation\",\n            \"name\": \"TA-Playwright-Mixed-Use\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6808b6c998fc50301f6877a0\",\n            \"key\": \"taPlaywrightCondoBuildingLocation\",\n            \"name\": \"TA-Playwright-Condo-Building\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6807a3378271684937b13ca3\",\n            \"key\": \"qaTestForBeaLocation\",\n            \"name\": \"QA- Test for Bea\",\n            \"displayNamePath\": \"qa - test\"\n        },\n        {\n            \"id\": \"679cd40d32f451b77e3abe49\",\n            \"key\": \"testCondoLocation\",\n            \"name\": \"test condo\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"679cbfba32f451b77e3a8dcc\",\n            \"key\": \"testAssetType3Location\",\n            \"name\": \"test - asset type 3\",\n            \"displayNamePath\": \"entityName\"\n        },\n        {\n            \"id\": \"679cbbe132f451b77e3a5fe5\",\n            \"key\": \"testAssetType239393Location\",\n            \"name\": \"test asset type 239393\",\n            \"displayNamePath\": \"test22\"\n        },\n        {\n            \"id\": \"677cfe441840abee910c61ad\",\n            \"key\": \"taPostmanSingleFamilyHomeLocation\",\n            \"name\": \"TA-Postman-Single-Family-Home\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"677cfe421840abee910c5788\",\n            \"key\": \"taPostmanMultiFamilyLocation\",\n            \"name\": \"TA-Postman-Multi-Family\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"677cfe401840abee910c4daa\",\n            \"key\": \"taPostmanMixedUseLocation\",\n            \"name\": \"TA-Postman-Mixed-Use\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"677cfe3d1840abee910c44db\",\n            \"key\": \"taPostmanCondoBuildingLocation\",\n            \"name\": \"TA-Postman-Condo-Building\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6719f7423de4ae070d0ada16\",\n            \"key\": \"testClonedMultiFamilyLocation\",\n            \"name\": \"test cloned - multi family\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6718a5e41fc8ad19d03332b9\",\n            \"key\": \"test9389Location\",\n            \"name\": \"test 9389\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"66e1ad66d26ca2ceeedd9a05\",\n            \"key\": \"taCypressCondoBuildingLocation\",\n            \"name\": \"TA-Cypress-Condo-Building\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"66e1ad66d26ca2ceeedd9a03\",\n            \"key\": \"taCypressSingleFamilyHomeLocation\",\n            \"name\": \"TA-Cypress-Single-Family-Home\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"66e1ad66d26ca2ceeedd9a00\",\n            \"key\": \"taCypressMixedUseLocation\",\n            \"name\": \"TA-Cypress-Mixed-Use\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"66e1ad66d26ca2ceeedd99fe\",\n            \"key\": \"taCypressMultiFamilyLocation\",\n            \"name\": \"TA-Cypress-Multi-Family\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"66daaba937a8da1bf833d767\",\n            \"key\": \"asset6922BorrowerLocation\",\n            \"name\": \"Asset 6.9.22 Borrower-1\",\n            \"displayNamePath\": \"Asset 6.9.22 Borrower\"\n        },\n        {\n            \"id\": \"66daab9237a8da1bf8339625\",\n            \"key\": \"asset6922LocationLocation\",\n            \"name\": \"Asset 6.9.22 Location\"\n        },\n        {\n            \"id\": \"66da0dc637a8da1bf80d8be3\",\n            \"key\": \"ggLocation\",\n            \"name\": \"gg\"\n        },\n        {\n            \"id\": \"66d80c01c83785bc1051e4c0\",\n            \"key\": \"testCloneLocation\",\n            \"name\": \"test-clone\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"66d6dc23c861e6a1b4be687c\",\n            \"key\": \"testAssetTypeLocation\",\n            \"name\": \"test-asset-type\"\n        },\n        {\n            \"id\": \"663d1847438c8504d946eb0c\",\n            \"key\": \"architectLocation\",\n            \"name\": \"Architect\",\n            \"displayNamePath\": \"entityName\"\n        },\n        {\n            \"id\": \"662fb5b56bfed09b46dbbe15\",\n            \"key\": \"independentLivingLocation\",\n            \"name\": \"Independent Living\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"65a829e27a060f00177d984b\",\n            \"key\": \"operatorLocation\",\n            \"name\": \"Operator\",\n            \"displayNamePath\": \"entityName\"\n        },\n        {\n            \"id\": \"6594644900ac680016c97571\",\n            \"key\": \"generalContractorLocation\",\n            \"name\": \"General Contractor\",\n            \"displayNamePath\": \"entityName\"\n        },\n        {\n            \"id\": \"655e5d845ccdbf00167860ab\",\n            \"key\": \"managementCompanyLocation\",\n            \"name\": \"Management Company\",\n            \"displayNamePath\": \"entityName\"\n        },\n        {\n            \"id\": \"655cee65869e6c00171f9663\",\n            \"key\": \"boardAndCareFacilitiesLocation\",\n            \"name\": \"Board and Care Facilities\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"655cee54869e6c00171f82ed\",\n            \"key\": \"skilledNursingFacilitiesLocation\",\n            \"name\": \"Skilled Nursing Facilities\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"655cee46869e6c00171f5e5b\",\n            \"key\": \"nursingHomesLocation\",\n            \"name\": \"Nursing Homes\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"655cee2d869e6c00171f322c\",\n            \"key\": \"assistedLivingFacilitiesLocation\",\n            \"name\": \"Assisted Living Facilities\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"655cedf4869e6c00171ece31\",\n            \"key\": \"residentialCareFacilitiesLocation\",\n            \"name\": \"Residential Care Facilities\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"6491d00fb1aa5400123abdb2\",\n            \"key\": \"floodBuildingLocation\",\n            \"name\": \"Building (Flood)\",\n            \"displayNamePath\": \"buildingNumber\"\n        },\n        {\n            \"id\": \"6451832bd5a56b0011e90df0\",\n            \"key\": \"studentHousingLocation\",\n            \"name\": \"Student Housing\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"64403ae0cbf18b0011904ea0\",\n            \"key\": \"cooperativeCorporationLocation\",\n            \"name\": \"Cooperative Corporation\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"63d171465f9d0b0012c21192\",\n            \"key\": \"farmLocation\",\n            \"name\": \"Farm\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"63d1713a5f9d0b0012c2114b\",\n            \"key\": \"parkingLotLocation\",\n            \"name\": \"Parking Lot\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"63d170645f9d0b0012c21079\",\n            \"key\": \"lightIndustrialLocation\",\n            \"name\": \"Industrial\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"63d170165f9d0b0012c21054\",\n            \"key\": \"retailLocation\",\n            \"name\": \"Retail\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"63d1700c5f9d0b0012c2102f\",\n            \"key\": \"placeOfWorshipLocation\",\n            \"name\": \"Place of Worship\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"63d16ffe5f9d0b0012c2100a\",\n            \"key\": \"manufacturingLocation\",\n            \"name\": \"Manufacturing\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"63c969f75f9d0b0012766c6c\",\n            \"key\": \"assistedLivingLocation\",\n            \"name\": \"Assisted Living\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"635ad077c188dd05e1e7884c\",\n            \"key\": \"ranchLocation\",\n            \"name\": \"Ranch \",\n            \"displayNamePath\": \"address.formattedAddress\"\n        },\n        {\n            \"id\": \"62d70ca563fc8cee5c931bd6\",\n            \"key\": \"mobileHomeLocation\",\n            \"name\": \"Mobile Home Park\",\n            \"displayNamePath\": \"address.formattedAddress\"\n        }\n    ]\n}"}],"_postman_id":"f31ff9f0-f797-49f3-b081-50a198df9496"},{"name":"Assets Types id","event":[{"listen":"test","script":{"id":"8155a816-9757-451d-b522-029c8f786dc0","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"ba527e2b-e707-4387-827b-387997a0645c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/asset-types/60db1c67687e130004f8885e","description":"<h2 id=\"get-asset-type-details\">Get Asset Type Details</h2>\n<p>This endpoint retrieves the details of a specific asset type identified by the <code>assetTypeId</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>assetTypeId</strong> (path parameter): The unique identifier of the asset type you wish to retrieve. This should be a valid ID corresponding to an asset type in the system.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the response will contain the details of the specified asset type, including various attributes associated with it. The exact structure of the response will depend on the asset type's properties.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>assetTypeId</code> provided is valid and exists in the system to avoid errors.</p>\n</li>\n<li><p>The response will typically include fields such as name, description, and other relevant metadata related to the asset type.</p>\n</li>\n<li><p>This endpoint is useful for clients needing to fetch information about specific asset types for display or processing purposes.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","asset-types","60db1c67687e130004f8885e"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"dd5f545c-e7c1-4a91-975f-b56344de2b51","name":"Assets Types id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/asset-types/60db1c67687e130004f8885e"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:39:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"60db1c67687e130004f8885e\",\n        \"key\": \"multiFamilyLocation\",\n        \"name\": \"Multi Family\",\n        \"displayNamePath\": \"address.formattedAddress\"\n    }\n}"}],"_postman_id":"ba527e2b-e707-4387-827b-387997a0645c"},{"name":"Insureds","event":[{"listen":"test","script":{"id":"533b2844-9af7-4711-9db4-3561504a9a25","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"9dc76b12-92d7-49da-ae4b-a77dbd705b70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insureds?limit=43","description":"<h1 id=\"get-borrowers\">Get Borrowers</h1>\n<p>This endpoint retrieves a list of insured from the system. It allows you to specify the number of insured to return using the <code>limit</code> query parameter.</p>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<ul>\n<li><strong>limit</strong> (integer, required): The maximum number of borrower records to return in the response. In this case, the limit is set to 43.</li>\n</ul>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li><p>?id[eq]=YourId</p>\n</li>\n<li><p>?displayName[eq]=YourName</p>\n</li>\n</ul>\n<h2 id=\"expected-response\">Expected Response</h2>\n<p>The response will include a JSON object containing an array of borrower records. Each record will have details about the borrower, such as their unique identifier, name, and other relevant information. The structure of the response may vary based on the implementation but generally includes:</p>\n<ul>\n<li><p><strong>insured</strong> (array): A list of borrower objects.</p>\n</li>\n<li><p><strong>total</strong> (integer): The total number of insured available in the system.</p>\n</li>\n</ul>\n<h2 id=\"notes\">Notes</h2>\n<ul>\n<li><p>Ensure that the <code>limit</code> parameter is set according to your needs, as it controls the number of records returned.</p>\n</li>\n<li><p>If the limit exceeds the total number of insured, the response will return all available records up to that limit.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insureds"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"limit","value":"43"}],"variable":[]}},"response":[{"id":"90d0668c-4048-491a-9c88-25b565ad6415","name":"Insureds - Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/insureds?limit=43","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","insureds"],"query":[{"key":"limit","value":"43"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:40:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22533"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 79,\n        \"limit\": 43,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"685306c19c8ebe5a6504e7e2\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 381741178-557939252\",\n            \"displayName\": \"CorporateName RestAPI 381741178-557939252\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 381741178-557939252\",\n            \"createdAt\": \"2025-06-18T18:34:41.836Z\",\n            \"updatedAt\": \"2025-06-18T18:34:41.836Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\",\n                \"Two-MetaDataLongString\": \"Meta String  Two\",\n                \"Three-MetaDataString\": \"Meta String Three\",\n                \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n                \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n            }\n        },\n        {\n            \"id\": \"68527909891ec5623415b040\",\n            \"type\": \"individual\",\n            \"firstName\": \"hi99\",\n            \"lastName\": \"hi99\",\n            \"corporateName\": null,\n            \"displayName\": \"hi99 hi99\",\n            \"insuredGroup\": \"68527903891ec5623415ae06\",\n            \"pathName\": \"hi99 hi99 > hi99\",\n            \"createdAt\": \"2025-06-18T08:30:01.503Z\",\n            \"updatedAt\": \"2025-06-18T08:30:01.503Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68518122891ec56234fbee3c\",\n            \"type\": \"individual\",\n            \"firstName\": \"hi88\",\n            \"lastName\": \"hi88\",\n            \"corporateName\": null,\n            \"displayName\": \"hi88 hi88\",\n            \"insuredGroup\": \"6750239ebc0b293e7c24ec3c\",\n            \"pathName\": \"hi88 hi88 > RestAPI-Group-522264151-297716817\",\n            \"createdAt\": \"2025-06-17T14:52:18.401Z\",\n            \"updatedAt\": \"2025-06-17T14:52:18.401Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68517fe3891ec56234fbd1b1\",\n            \"type\": \"individual\",\n            \"firstName\": \"hi33\",\n            \"lastName\": \"hi33\",\n            \"corporateName\": null,\n            \"displayName\": \"hi33 hi33\",\n            \"insuredGroup\": \"6750239ebc0b293e7c24ec3c\",\n            \"pathName\": \"hi33 hi33 > RestAPI-Group-522264151-297716817\",\n            \"createdAt\": \"2025-06-17T14:46:59.990Z\",\n            \"updatedAt\": \"2025-06-17T14:46:59.990Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68517ece891ec56234fb9d59\",\n            \"type\": \"individual\",\n            \"firstName\": \"hi66\",\n            \"lastName\": \"hi66\",\n            \"corporateName\": null,\n            \"displayName\": \"hi66 hi66\",\n            \"insuredGroup\": \"6750239ebc0b293e7c24ec3c\",\n            \"pathName\": \"hi66 hi66 > RestAPI-Group-522264151-297716817\",\n            \"createdAt\": \"2025-06-17T14:42:22.646Z\",\n            \"updatedAt\": \"2025-06-17T14:42:22.646Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684bf3c2f70b7085cd47ce0f\",\n            \"type\": \"individual\",\n            \"firstName\": \"postman\",\n            \"lastName\": \"Individual Borrower\",\n            \"corporateName\": null,\n            \"displayName\": \"Postman Automation Insurance Brokers LLC Individual\",\n            \"insuredGroup\": null,\n            \"pathName\": null,\n            \"createdAt\": \"2025-06-13T09:47:46.806Z\",\n            \"updatedAt\": \"2025-06-13T09:47:46.806Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab3cd6a91c15ef16f27f\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 846164673-688050854\",\n            \"displayName\": \"CorporateName RestAPI With Group 846164673-688050854\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 846164673-688050854\",\n            \"createdAt\": \"2025-06-12T10:26:04.937Z\",\n            \"updatedAt\": \"2025-06-12T10:26:04.937Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab3cd6a91c15ef16f27a\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 563165832-628256732\",\n            \"displayName\": \"CorporateName RestAPI 563165832-628256732\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 563165832-628256732\",\n            \"createdAt\": \"2025-06-12T10:26:04.665Z\",\n            \"updatedAt\": \"2025-06-12T10:26:04.665Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab33d6a91c15ef16e820\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 922970968-655323314\",\n            \"displayName\": \"CorporateName RestAPI 922970968-655323314\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 922970968-655323314\",\n            \"createdAt\": \"2025-06-12T10:25:55.030Z\",\n            \"updatedAt\": \"2025-06-12T10:25:55.030Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a42f1084a00665f6b908e\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 348853068-375378919\",\n            \"displayName\": \"CorporateName RestAPI With Group 348853068-375378919\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 348853068-375378919\",\n            \"createdAt\": \"2025-06-12T03:01:05.021Z\",\n            \"updatedAt\": \"2025-06-12T03:01:05.021Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42f0084a00665f6b9089\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 351039048-260406266\",\n            \"displayName\": \"CorporateName RestAPI 351039048-260406266\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 351039048-260406266\",\n            \"createdAt\": \"2025-06-12T03:01:04.865Z\",\n            \"updatedAt\": \"2025-06-12T03:01:04.865Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42ea084a00665f6b862f\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 881768922-899854707\",\n            \"displayName\": \"CorporateName RestAPI 881768922-899854707\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 881768922-899854707\",\n            \"createdAt\": \"2025-06-12T03:00:58.573Z\",\n            \"updatedAt\": \"2025-06-12T03:00:58.573Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a3a66084a00665f5a6e77\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 882574228-442764266\",\n            \"displayName\": \"CorporateName RestAPI With Group 882574228-442764266\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 882574228-442764266\",\n            \"createdAt\": \"2025-06-12T02:24:38.601Z\",\n            \"updatedAt\": \"2025-06-12T02:24:38.601Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a66084a00665f5a6e72\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 339009089-650170547\",\n            \"displayName\": \"CorporateName RestAPI 339009089-650170547\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 339009089-650170547\",\n            \"createdAt\": \"2025-06-12T02:24:38.336Z\",\n            \"updatedAt\": \"2025-06-12T02:24:38.336Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a5d084a00665f5a6418\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 294806628-474536906\",\n            \"displayName\": \"CorporateName RestAPI 294806628-474536906\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 294806628-474536906\",\n            \"createdAt\": \"2025-06-12T02:24:29.790Z\",\n            \"updatedAt\": \"2025-06-12T02:24:29.790Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684999d2084a00665f59e24e\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 145646656-195507953\",\n            \"displayName\": \"CorporateName RestAPI With Group 145646656-195507953\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 145646656-195507953\",\n            \"createdAt\": \"2025-06-11T14:59:30.190Z\",\n            \"updatedAt\": \"2025-06-11T14:59:30.190Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684999d2084a00665f59e249\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 915546523-770546220\",\n            \"displayName\": \"CorporateName RestAPI 915546523-770546220\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 915546523-770546220\",\n            \"createdAt\": \"2025-06-11T14:59:30.004Z\",\n            \"updatedAt\": \"2025-06-11T14:59:30.004Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684999cc084a00665f59d7ef\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 453711769-191877530\",\n            \"displayName\": \"CorporateName RestAPI 453711769-191877530\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 453711769-191877530\",\n            \"createdAt\": \"2025-06-11T14:59:24.523Z\",\n            \"updatedAt\": \"2025-06-11T14:59:24.523Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68499842084a00665f59774d\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 736238758-371677877\",\n            \"displayName\": \"CorporateName RestAPI With Group 736238758-371677877\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 736238758-371677877\",\n            \"createdAt\": \"2025-06-11T14:52:50.292Z\",\n            \"updatedAt\": \"2025-06-11T14:52:50.292Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499842084a00665f597748\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 572583446-132049539\",\n            \"displayName\": \"CorporateName RestAPI 572583446-132049539\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 572583446-132049539\",\n            \"createdAt\": \"2025-06-11T14:52:50.112Z\",\n            \"updatedAt\": \"2025-06-11T14:52:50.112Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6849983c084a00665f596cee\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 639372998-788407954\",\n            \"displayName\": \"CorporateName RestAPI 639372998-788407954\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 639372998-788407954\",\n            \"createdAt\": \"2025-06-11T14:52:44.415Z\",\n            \"updatedAt\": \"2025-06-11T14:52:44.415Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68499576084a00665f4c4a15\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 688678375-997313629\",\n            \"displayName\": \"CorporateName RestAPI With Group 688678375-997313629\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 688678375-997313629\",\n            \"createdAt\": \"2025-06-11T14:40:54.829Z\",\n            \"updatedAt\": \"2025-06-11T14:40:54.829Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499576084a00665f4c49ba\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 136563547-742810156\",\n            \"displayName\": \"CorporateName RestAPI 136563547-742810156\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 136563547-742810156\",\n            \"createdAt\": \"2025-06-11T14:40:54.544Z\",\n            \"updatedAt\": \"2025-06-11T14:40:54.544Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499565084a00665f4be512\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 316218290-834554235\",\n            \"displayName\": \"CorporateName RestAPI 316218290-834554235\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 316218290-834554235\",\n            \"createdAt\": \"2025-06-11T14:40:37.175Z\",\n            \"updatedAt\": \"2025-06-11T14:40:37.175Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68498e9aa0b0d30e2c68c091\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 140615223-824156200\",\n            \"displayName\": \"CorporateName RestAPI With Group 140615223-824156200\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 140615223-824156200\",\n            \"createdAt\": \"2025-06-11T14:11:38.241Z\",\n            \"updatedAt\": \"2025-06-11T14:11:38.241Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498e99a0b0d30e2c68c08c\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 782814252-404246968\",\n            \"displayName\": \"CorporateName RestAPI 782814252-404246968\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 782814252-404246968\",\n            \"createdAt\": \"2025-06-11T14:11:37.975Z\",\n            \"updatedAt\": \"2025-06-11T14:11:37.975Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498e91a0b0d30e2c68b632\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 209450365-457615259\",\n            \"displayName\": \"CorporateName RestAPI 209450365-457615259\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 209450365-457615259\",\n            \"createdAt\": \"2025-06-11T14:11:29.486Z\",\n            \"updatedAt\": \"2025-06-11T14:11:29.486Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684982aba0b0d30e2c56fd52\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 845170495-433161774\",\n            \"displayName\": \"CorporateName RestAPI With Group 845170495-433161774\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 845170495-433161774\",\n            \"createdAt\": \"2025-06-11T13:20:43.603Z\",\n            \"updatedAt\": \"2025-06-11T13:20:43.603Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684982aba0b0d30e2c56fd4d\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 803527364-136145258\",\n            \"displayName\": \"CorporateName RestAPI 803527364-136145258\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 803527364-136145258\",\n            \"createdAt\": \"2025-06-11T13:20:43.342Z\",\n            \"updatedAt\": \"2025-06-11T13:20:43.342Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684982a2a0b0d30e2c56f2f3\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 223594756-944046642\",\n            \"displayName\": \"CorporateName RestAPI 223594756-944046642\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 223594756-944046642\",\n            \"createdAt\": \"2025-06-11T13:20:34.617Z\",\n            \"updatedAt\": \"2025-06-11T13:20:34.617Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68498040a0b0d30e2c56a819\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 921686899-566532187\",\n            \"displayName\": \"CorporateName RestAPI With Group 921686899-566532187\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 921686899-566532187\",\n            \"createdAt\": \"2025-06-11T13:10:24.699Z\",\n            \"updatedAt\": \"2025-06-11T13:10:24.699Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498040a0b0d30e2c56a814\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 908295793-299392806\",\n            \"displayName\": \"CorporateName RestAPI 908295793-299392806\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 908295793-299392806\",\n            \"createdAt\": \"2025-06-11T13:10:24.322Z\",\n            \"updatedAt\": \"2025-06-11T13:10:24.322Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498022a0b0d30e2c569b0a\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 725825793-332394397\",\n            \"displayName\": \"CorporateName RestAPI 725825793-332394397\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 725825793-332394397\",\n            \"createdAt\": \"2025-06-11T13:09:54.151Z\",\n            \"updatedAt\": \"2025-06-11T13:09:54.151Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68497d00a0b0d30e2c46f2e1\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-462192917\",\n            \"displayName\": \"EditedBorrowerName-462192917\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"EditedBorrowerName-462192917\",\n            \"createdAt\": \"2025-06-11T12:56:32.462Z\",\n            \"updatedAt\": \"2025-06-11T13:10:23.952Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68497d00a0b0d30e2c46f2dc\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 474720238-699793344\",\n            \"displayName\": \"CorporateName RestAPI 474720238-699793344\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 474720238-699793344\",\n            \"createdAt\": \"2025-06-11T12:56:32.180Z\",\n            \"updatedAt\": \"2025-06-11T12:56:32.180Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68497cf7a0b0d30e2c46e700\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 903890554-329327287\",\n            \"displayName\": \"CorporateName RestAPI 903890554-329327287\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 903890554-329327287\",\n            \"createdAt\": \"2025-06-11T12:56:23.398Z\",\n            \"updatedAt\": \"2025-06-11T12:56:23.398Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68496fcf1c67c221e8a9aa5d\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 318565732-845994449\",\n            \"displayName\": \"CorporateName RestAPI With Group 318565732-845994449\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 318565732-845994449\",\n            \"createdAt\": \"2025-06-11T12:00:15.090Z\",\n            \"updatedAt\": \"2025-06-11T12:00:15.090Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68496fce1c67c221e8a9aa58\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 890652989-636833355\",\n            \"displayName\": \"CorporateName RestAPI 890652989-636833355\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 890652989-636833355\",\n            \"createdAt\": \"2025-06-11T12:00:14.829Z\",\n            \"updatedAt\": \"2025-06-11T12:00:14.829Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68496fc51c67c221e8a9a01d\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"Test CorporateName RestAPI 293937646-592331150\",\n            \"displayName\": \"Test CorporateName RestAPI 293937646-592331150\",\n            \"insuredGroup\": \"6750239ebc0b293e7c24ec3c\",\n            \"pathName\": \"Test CorporateName RestAPI 293937646-592331150 > RestAPI-Group-522264151-297716817\",\n            \"createdAt\": \"2025-06-11T12:00:05.832Z\",\n            \"updatedAt\": \"2025-06-17T14:52:42.340Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495fa1356b48fee1ddb551\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI With Group 612408339-629550351\",\n            \"displayName\": \"CorporateName RestAPI With Group 612408339-629550351\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"CorporateName RestAPI With Group 612408339-629550351\",\n            \"createdAt\": \"2025-06-11T10:51:13.881Z\",\n            \"updatedAt\": \"2025-06-11T10:51:13.881Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68495fa1356b48fee1ddb54c\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 899561163-353118044\",\n            \"displayName\": \"CorporateName RestAPI 899561163-353118044\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 899561163-353118044\",\n            \"createdAt\": \"2025-06-11T10:51:13.460Z\",\n            \"updatedAt\": \"2025-06-11T10:51:13.460Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68495f93356b48fee1dda861\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"CorporateName RestAPI 707451665-897231830\",\n            \"displayName\": \"CorporateName RestAPI 707451665-897231830\",\n            \"insuredGroup\": null,\n            \"pathName\": \"CorporateName RestAPI 707451665-897231830\",\n            \"createdAt\": \"2025-06-11T10:50:59.674Z\",\n            \"updatedAt\": \"2025-06-11T10:50:59.674Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68495c72356b48fee1dd35fc\",\n            \"type\": \"corporate\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"corporateName\": \"EditedBorrowerName-592131420\",\n            \"displayName\": \"EditedBorrowerName-592131420\",\n            \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n            \"pathName\": \"EditedBorrowerName-592131420\",\n            \"createdAt\": \"2025-06-11T10:37:38.222Z\",\n            \"updatedAt\": \"2025-06-11T10:51:13.037Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        }\n    ]\n}"}],"_postman_id":"9dc76b12-92d7-49da-ae4b-a77dbd705b70"},{"name":"Insureds id","event":[{"listen":"test","script":{"id":"7f8940fd-22e8-4767-9dc8-6bdbf22fd968","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('borrowerId', responseData.data.id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"ccdf1d93-a074-4e16-963b-a22c0dad1b4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insureds/65b67a17c0c9c80a80e87e71","description":"<h2 id=\"get-borrower-details\">Get Borrower Details</h2>\n<p>This endpoint retrieves detailed information about a specific borrower identified by their unique <code>borrowerId</code>.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insureds/65b67a17c0c9c80a80e87e71</code></p>\n</li>\n</ul>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<ul>\n<li><code>borrowerId</code> (string): The unique identifier for the insured whose details are being requested. This parameter is required.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain the details of the borrower in a structured format. The expected structure of the response is as follows:</p>\n<ul>\n<li><p><strong>status</strong> (string): Indicates the success or failure of the request.</p>\n</li>\n<li><p><strong>data</strong> (object): Contains the details of the borrower.</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier of the borrower.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the borrower.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the borrower.</p>\n</li>\n<li><p><strong>phone</strong> (string): The contact number of the borrower.</p>\n</li>\n<li><p><strong>address</strong> (object): The address details of the borrower.</p>\n<ul>\n<li><p><strong>street</strong> (string): The street address.</p>\n</li>\n<li><p><strong>city</strong> (string): The city of the borrower.</p>\n</li>\n<li><p><strong>state</strong> (string): The state of the borrower.</p>\n</li>\n<li><p><strong>zip</strong> (string): The postal code.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>message</strong> (string): A message providing additional information about the response.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"data\": {\n    \"id\": \"12345\",\n    \"name\": \"John Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"phone\": \"123-456-7890\",\n    \"address\": {\n      \"street\": \"123 Main St\",\n      \"city\": \"Anytown\",\n      \"state\": \"CA\",\n      \"zip\": \"12345\"\n    }\n  },\n  \"message\": \"Borrower details retrieved successfully.\"\n}\n\n</code></pre>\n<p>This endpoint is essential for applications that need to display or manage borrower information, enabling users to access specific details by providing the corresponding <code>borrowerId</code>.</p>\n","urlObject":{"path":["rest","insureds","65b67a17c0c9c80a80e87e71"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"961eb1b6-2ba0-469c-b920-afde8e42584d","name":"Insureds id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/insureds/65b67a17c0c9c80a80e87e71"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:40:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"564"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"65b67a17c0c9c80a80e87e71\",\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"EditedBorrowerName-807525452\",\n        \"displayName\": \"EditedBorrowerName-807525452\",\n        \"insuredGroup\": null,\n        \"pathName\": \"EditedBorrowerName-807525452\",\n        \"createdAt\": \"2024-01-28T16:00:23.254Z\",\n        \"updatedAt\": \"2025-06-18T18:35:05.507Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"ccdf1d93-a074-4e16-963b-a22c0dad1b4b"},{"name":"Insureds id","event":[{"listen":"test","script":{"id":"aa08bba0-7530-4169-a4e5-6c02c96df7a7","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('borrowerId', responseData.data.id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"9c83e859-b8e1-4056-b270-e5ad6fbed2c7","exec":["function generateRandomName() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `EditedBorrowerName-${secondPart}`","    pm.collectionVariables.set('EditedBorrowerName', randomNumber)","    return randomNumber.toString();","}","","generateRandomName()"],"type":"text/javascript","packages":{}}}],"id":"04d53ec7-587d-45b9-9b15-0cdf27e48694","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"corporateName\": \"EditedBorrowerName-104503594\",\n    \"type\": \"corporate\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insureds/65b67a17c0c9c80a80e87e71","description":"<h2 id=\"update-insured-information\">Update Insured Information</h2>\n<p>This endpoint allows you to update the details of a borrower identified by their unique <code>insuredId</code>. The HTTP method used for this request is <strong>PATCH</strong>, which is typically used to apply partial modifications to a resource.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>PATCH https://api-v2-test.tryadvocate.com/rest/insureds/{{insuredId}}</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be provided in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>corporateName</strong> (string): The updated name of the corporate insured.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of insured, which in this case is set to \"corporate/individual\".</p>\n</li>\n<li><p>firstName (string): firstName only for <code>Individual</code> type</p>\n</li>\n<li><p>lastName (string): lastName only for <code>Individual</code> type</p>\n</li>\n<li><p>metaData (object): Optional</p>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"corporateName\": \"{{EditedInsuredName}}\",\n  \"type\": \"corporate\"\n}\n\n</code></pre>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon a successful update, the server will typically respond with a status code indicating success (e.g., 200 OK) and may return the updated borrower information in the response body. The exact structure of the response will depend on the implementation but is generally expected to include the updated fields.</p>\n<p>Ensure that you handle error responses appropriately, as they may provide useful information regarding any issues encountered during the update process.</p>\n","urlObject":{"path":["rest","insureds","65b67a17c0c9c80a80e87e71"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"ccd34fea-e715-4da1-b455-5253253cdf9b","name":"Insureds id - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"corporateName\": \"EditedBorrowerName-104503594\",\n    \"type\": \"corporate\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insureds/65b67a17c0c9c80a80e87e71"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:40:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"564"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"65b67a17c0c9c80a80e87e71\",\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"EditedBorrowerName-379774798\",\n        \"displayName\": \"EditedBorrowerName-379774798\",\n        \"insuredGroup\": null,\n        \"pathName\": \"EditedBorrowerName-379774798\",\n        \"createdAt\": \"2024-01-28T16:00:23.254Z\",\n        \"updatedAt\": \"2025-06-18T18:40:41.366Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"04d53ec7-587d-45b9-9b15-0cdf27e48694"},{"name":"Insureds Corporate Type With Group","event":[{"listen":"test","script":{"id":"b663c7e7-71f6-49a2-98be-2f558d3b946d","exec":["","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"d02deb9b-5a82-4023-a45d-e11f6c64f3ce","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBorrowerId', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"b794862c-b027-4b10-9ca7-177c46227ca3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"displayName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"category\": \"606b53fa6c1ef7e79a951b50\",\n        \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n        \"pathName\": \"CorporateName RestAPI\",\n        \"createdAt\": \"2024-05-28T05:56:15.666Z\",\n        \"updatedAt\": \"2024-05-29T14:02:57.170Z\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insureds","description":"<h2 id=\"add-borrower\">Add Borrower</h2>\n<p>This endpoint allows you to add a new borrower to the system. The borrower can be of type \"corporate\", and the request requires specific details to be provided in the payload.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>type</strong> (string): Indicates the type of borrower. For this request, it should be set to \"corporate\".</p>\n</li>\n<li><p><strong>firstName</strong> (string, optional): The first name of the borrower. This can be null for corporate insured.</p>\n</li>\n<li><p><strong>lastName</strong> (string, optional): The last name of the borrower. This can also be null for corporate insured.</p>\n</li>\n<li><p><strong>corporateName</strong> (string): The name of the corporate borrower. This is a required field.</p>\n</li>\n<li><p><strong>insuredGroup</strong> (string): The ID of the borrower group associated with this borrower. This is a required field.</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a response containing the details of the newly created borrower, including all the parameters provided in the request along with any server-generated fields.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the required fields are populated correctly to avoid validation errors.</p>\n</li>\n<li><p>The timestamps for <code>createdAt</code> and <code>updatedAt</code> are usually handled by the server and may not need to be included in the request.</p>\n</li>\n<li><p>This endpoint is designed for corporate insured only; individual insured should use a different endpoint.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insureds"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"9b4d8207-0349-42a6-9ec0-c545add52b1b","name":"Insureds Corporate Group - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"displayName\": \"CorporateName RestAPI With Group 534915727-871366963\",\n        \"category\": \"606b53fa6c1ef7e79a951b50\",\n        \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n        \"pathName\": \"CorporateName RestAPI\",\n        \"createdAt\": \"2024-05-28T05:56:15.666Z\",\n        \"updatedAt\": \"2024-05-29T14:02:57.170Z\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insureds"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:40:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"435"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685308349c8ebe5a6504f5e0\",\n        \"type\": \"corporate\",\n        \"firstName\": null,\n        \"lastName\": null,\n        \"corporateName\": \"CorporateName RestAPI With Group 991931140-235326947\",\n        \"insuredGroup\": \"667ad59fa55fae0be01d605f\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"b794862c-b027-4b10-9ca7-177c46227ca3"},{"name":"Insured Group","event":[{"listen":"test","script":{"id":"8b561022-b6cc-42c6-84dd-b91c81cef77a","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"8f7a5265-07f9-49f2-b469-1b8367a8a9d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups?limit=15","description":"<h2 id=\"borrower-groups-api\">Borrower Groups API</h2>\n<p>This endpoint retrieves a list of borrower groups from the system. It allows users to specify the number of groups to return using the <code>limit</code> query parameter.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: <code>GET</code></p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insured-groups</code></p>\n</li>\n</ul>\n<h4 id=\"query-parameters\">Query Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>limit</td>\n<td>number</td>\n<td>The maximum number of borrower groups to return. Default is 15 if not specified.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<p>The response will be in JSON format and will include an array of borrower groups. Each borrower group object typically contains details such as the group's ID, name, and related attributes.</p>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li><p>?id[eq]=YourId</p>\n</li>\n<li><p>?name[eq]=YourName</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"insuredGroups\": [\n        {\n            \"id\": \"group1\",\n            \"name\": \"Group One\",\n            ...\n        },\n        {\n            \"id\": \"group2\",\n            \"name\": \"Group Two\",\n            ...\n        }\n    ],\n    \"total\": 2\n}\n\n</code></pre>\n<h3 id=\"additional-notes\">Additional Notes</h3>\n<ul>\n<li><p>Ensure that the <code>limit</code> parameter is set according to your needs, as this will control the number of results returned.</p>\n</li>\n<li><p>If no <code>limit</code> is provided, the default value of 15 will be used.</p>\n</li>\n<li><p>This endpoint is useful for applications that need to display or manage borrower groups effectively.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insured-groups"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"limit","value":"15"}],"variable":[]}},"response":[{"id":"a5ffedb0-f09e-4a6f-834e-ff13fb20ed81","name":"Insured Group - Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/insured-groups?limit=15","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","insured-groups"],"query":[{"key":"limit","value":"15"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:41:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2852"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 92,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"685306759c8ebe5a6504e7d4\",\n            \"name\": \"RestAPI-Group-331824922-714017564\",\n            \"createdAt\": \"2025-06-18T18:33:25.075Z\",\n            \"updatedAt\": \"2025-06-18T18:33:25.075Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\",\n                \"Two-MetaDataLongString\": \"Meta String  Two\",\n                \"Three-MetaDataString\": \"Meta String Three\",\n                \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n                \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n            }\n        },\n        {\n            \"id\": \"6853066a9c8ebe5a6504e7d1\",\n            \"name\": \"RestAPI-Group-860056795-692632032\",\n            \"createdAt\": \"2025-06-18T18:33:14.699Z\",\n            \"updatedAt\": \"2025-06-18T18:33:14.699Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\"\n            }\n        },\n        {\n            \"id\": \"68527903891ec5623415ae06\",\n            \"name\": \"hi99\",\n            \"createdAt\": \"2025-06-18T08:29:55.107Z\",\n            \"updatedAt\": \"2025-06-18T08:29:55.107Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68517fba891ec56234fbd19b\",\n            \"name\": \"hi33\",\n            \"createdAt\": \"2025-06-17T14:46:18.611Z\",\n            \"updatedAt\": \"2025-06-17T14:46:18.611Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68517f0f891ec56234fb9d80\",\n            \"name\": \"hi22\",\n            \"createdAt\": \"2025-06-17T14:43:27.233Z\",\n            \"updatedAt\": \"2025-06-17T14:43:27.233Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab3ed6a91c15ef16f28e\",\n            \"name\": \"RestAPI-Group-985866081-828164345\",\n            \"createdAt\": \"2025-06-12T10:26:06.215Z\",\n            \"updatedAt\": \"2025-06-12T10:26:06.215Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab30d6a91c15ef16e80c\",\n            \"name\": \"RestAPI-Group-538720189-753536425\",\n            \"createdAt\": \"2025-06-12T10:25:52.197Z\",\n            \"updatedAt\": \"2025-06-12T10:26:05.952Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab2fd6a91c15ef16e809\",\n            \"name\": \"RestAPI-Group-283437496-615547886\",\n            \"createdAt\": \"2025-06-12T10:25:51.936Z\",\n            \"updatedAt\": \"2025-06-12T10:25:51.936Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"684aab2fd6a91c15ef16e806\",\n            \"name\": \"RestAPI-Group-662055136-603214860\",\n            \"createdAt\": \"2025-06-12T10:25:51.673Z\",\n            \"updatedAt\": \"2025-06-12T10:25:51.673Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42f1084a00665f6b909d\",\n            \"name\": \"RestAPI-Group-543823440-104245522\",\n            \"createdAt\": \"2025-06-12T03:01:05.417Z\",\n            \"updatedAt\": \"2025-06-12T03:01:05.417Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42e8084a00665f6b861b\",\n            \"name\": \"RestAPI-Group-578819866-637263349\",\n            \"createdAt\": \"2025-06-12T03:00:56.886Z\",\n            \"updatedAt\": \"2025-06-12T03:01:05.323Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42e8084a00665f6b8618\",\n            \"name\": \"RestAPI-Group-868826483-341188017\",\n            \"createdAt\": \"2025-06-12T03:00:56.699Z\",\n            \"updatedAt\": \"2025-06-12T03:00:56.699Z\",\n            \"metadata\": {\n                \"Three-MetaDataString\": \"MetaDataStringTest\"\n            }\n        },\n        {\n            \"id\": \"684a42e8084a00665f6b8615\",\n            \"name\": \"RestAPI-Group-681836497-382577694\",\n            \"createdAt\": \"2025-06-12T03:00:56.491Z\",\n            \"updatedAt\": \"2025-06-12T03:00:56.491Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a67084a00665f5a6e86\",\n            \"name\": \"RestAPI-Group-186500064-758680329\",\n            \"createdAt\": \"2025-06-12T02:24:39.860Z\",\n            \"updatedAt\": \"2025-06-12T02:24:39.860Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a5a084a00665f5a6404\",\n            \"name\": \"RestAPI-Group-158377058-981878561\",\n            \"createdAt\": \"2025-06-12T02:24:26.977Z\",\n            \"updatedAt\": \"2025-06-12T02:24:39.607Z\",\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"8f7a5265-07f9-49f2-b469-1b8367a8a9d6"},{"name":"Insured Group id","event":[{"listen":"test","script":{"id":"9a7f4c5b-72fe-4089-b57e-9024ccdbc240","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"5beae6af-e8ed-42dd-bd34-4dab398a32b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c","description":"<h3 id=\"get-borrower-group-by-id\">Get Borrower Group by ID</h3>\n<p>This endpoint retrieves detailed information about a specific borrower group identified by the <code>insuredGroupId</code>.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c</code></p>\n</li>\n<li><p><strong>Path Parameters</strong>:</p>\n<ul>\n<li><code>insuredGroupId</code> (string): The unique identifier of the borrower group you wish to retrieve.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful request, the API will return a JSON object containing the details of the specified borrower group. The response format includes various attributes related to the borrower group, such as its name, members, and associated details.</p>\n<ul>\n<li><p><strong>Response Format</strong>:</p>\n<ul>\n<li><p>Content-Type: application/json</p>\n</li>\n<li><p>Body: A JSON object representing the borrower group.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"string\",\n  \"name\": \"string\",\n  \"members\": [\n    {\n      \"memberId\": \"string\",\n      \"memberName\": \"string\"\n    }\n  ],\n  \"createdAt\": \"string\",\n  \"updatedAt\": \"string\"\n}\n\n</code></pre>\n","urlObject":{"path":["rest","insured-groups","6750239ebc0b293e7c24ec3c"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"7efe875e-6a77-423c-b55d-fd905e003b17","name":"Insured Group id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:41:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"220"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"684aab2fd6a91c15ef16e809\",\n        \"name\": \"RestAPI-Group-283437496-615547886\",\n        \"createdAt\": \"2025-06-12T10:25:51.936Z\",\n        \"updatedAt\": \"2025-06-12T10:25:51.936Z\",\n        \"metadata\": {\n            \"Three-MetaDataString\": \"MetaDataStringTest\"\n        }\n    }\n}"}],"_postman_id":"5beae6af-e8ed-42dd-bd34-4dab398a32b1"},{"name":"Insured Group id","event":[{"listen":"test","script":{"id":"83609d92-8f7b-4ea4-91a7-0667595bcc03","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"1bc1e6cb-cf8e-4a0c-be8d-efd13d3d9661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"    { \n        \"name\": \"Group Name: 534915727-871366963\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c","description":"<h2 id=\"update-borrower-group\">Update Borrower Group</h2>\n<p>This endpoint allows you to update the metadata of a specific borrower group identified by <code>insuredGroupId</code>.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: PATCH</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and can include the following parameter:</p>\n<ul>\n<li><p><code>name</code> (string): name of the group</p>\n</li>\n<li><p><code>metadata</code> (object): An object that holds metadata related to the borrower group. This can be used to store additional information as needed.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The expected response will typically include the updated borrower group information, confirming that the changes have been applied successfully. The exact structure of the response will depend on the implementation but generally includes the updated fields.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>insuredGroupId</code> is valid and corresponds to an existing borrower group.</p>\n</li>\n<li><p>The <code>metadata</code> object can be left empty if no additional information is required.</p>\n</li>\n<li><p>This operation is idempotent, meaning that repeated calls with the same data will not result in different outcomes.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insured-groups","6750239ebc0b293e7c24ec3c"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"9d53de8c-a027-4958-88f4-2b58875f50e7","name":"Insured Group id - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"    { \n        \"name\": \"Group Name: 534915727-871366963\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups/6750239ebc0b293e7c24ec3c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:41:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"218"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"684aab2fd6a91c15ef16e809\",\n        \"name\": \"Group Name: 991931140-235326947\",\n        \"createdAt\": \"2025-06-12T10:25:51.936Z\",\n        \"updatedAt\": \"2025-06-18T18:41:27.776Z\",\n        \"metadata\": {\n            \"Three-MetaDataString\": \"MetaDataStringTest\"\n        }\n    }\n}"}],"_postman_id":"1bc1e6cb-cf8e-4a0c-be8d-efd13d3d9661"},{"name":"Insured Group","event":[{"listen":"test","script":{"id":"243918b4-8241-4a2e-bc4b-3f87f0e21621","exec":["const  responseData = pm.response.json();","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"e8c94fde-5063-44e6-848a-0911a5f186aa","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBorrowerGroupNr', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"a9af9a34-9a0b-4c61-aa77-0d762413a18f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \n    \"name\": \"RestAPI-Group-754661038-757249367\"\n    \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups","description":"<h3 id=\"endpoint-create-borrower-group\">Endpoint: Create Borrower Group</h3>\n<p>This endpoint allows users to create a new borrower group within the system. It is designed to facilitate the management of borrower groups by providing a straightforward method to add new entries.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/insured-groups</code></p>\n</li>\n</ul>\n<h5 id=\"request-body\">Request Body</h5>\n<p>The request body must be formatted as a JSON object containing the following parameter:</p>\n<ul>\n<li><strong>name</strong> (string): The name of the borrower group. This should be a unique identifier for the group.</li>\n</ul>\n<p><strong>Example Request Body</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"RestAPI-Group-{{randomBorrower}}\"\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful creation of a borrower group, the API will return a response containing the details of the newly created group. The structure of the response is as follows:</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier for the newly created borrower group.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the borrower group that was created.</p>\n</li>\n<li><p><strong>createdAt</strong> (string): The timestamp indicating when the borrower group was created.</p>\n</li>\n<li><p><strong>updatedAt</strong> (string): The timestamp indicating when the borrower group was last updated.</p>\n</li>\n</ul>\n<p>This response structure allows the client to confirm the successful creation of the borrower group and provides essential information about the group.</p>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"group-12345\",\n  \"name\": \"RestAPI-Group-{{randomBorrower}}\",\n  \"createdAt\": \"2023-10-01T12:00:00Z\",\n  \"updatedAt\": \"2023-10-01T12:00:00Z\"\n}\n\n</code></pre>\n","urlObject":{"path":["rest","insured-groups"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"9ce727fa-f395-4f6e-8187-c982e939fe67","name":"Insured Group - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \n    \"name\": \"RestAPI-Group-754661038-757249367\"\n    \n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insured-groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:41:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"177"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6853086a9c8ebe5a6504f5ea\",\n        \"name\": \"RestAPI-Group-500213456-710891194\",\n        \"createdAt\": \"2025-06-18T18:41:46.786Z\",\n        \"updatedAt\": \"2025-06-18T18:41:46.786Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"a9af9a34-9a0b-4c61-aa77-0d762413a18f"},{"name":"Brokers","event":[{"listen":"test","script":{"id":"ddd0471c-8138-4cd0-9adc-844896af9698","exec":["pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","",""],"type":"text/javascript","packages":{}}}],"id":"d4d2fe56-961b-49d3-8d00-e65ecb94f3ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/brokers","description":"<h3 id=\"endpoint-get-restbrokers\">Endpoint: <code>GET /rest/brokers</code></h3>\n<p>This endpoint retrieves a list of brokers from the system. It is useful for obtaining information about all available brokers, which may include details such as their identifiers, names, and statuses.</p>\n<h4 id=\"request-format\">Request Format</h4>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>Request Body</strong>: This endpoint does not require a request body.</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will be in JSON format and typically includes the following fields:</p>\n<ul>\n<li><p><code>brokers</code>: An array containing objects, each representing a broker with attributes such as:</p>\n<ul>\n<li><p><code>id</code>: Unique identifier for the broker.</p>\n</li>\n<li><p><code>name</code>: Name of the broker.</p>\n</li>\n<li><p><code>status</code>: Current status of the broker.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li><p>?id[eq]=YourId</p>\n</li>\n<li><p>?brokerage[eq]=YourId</p>\n</li>\n</ul>\n<p>Example of a response structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"brokers\": [\n    {\n      \"id\": \"string\",\n      \"name\": \"string\",\n      \"status\": \"string\"\n    }\n  ]\n}\n\n</code></pre>\n<p>This response allows users to understand the available brokers and their current operational states.</p>\n","urlObject":{"path":["rest","brokers"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"28a2f778-7bc4-4bce-80b0-e79be3f62673","name":"Brokers - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/brokers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:42:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3669"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 10044,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"68526ff4891ec56234148ca9\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"616075ddb65a870003b29d06\",\n            \"firstName\": \"hi8888\",\n            \"lastName\": \"hi8888\",\n            \"displayName\": \"hi8888 hi8888\",\n            \"pathName\": \"Ellen Klinger > hi8888 hi8888\"\n        },\n        {\n            \"id\": \"68518153891ec56234fc0d45\",\n            \"email\": \"jdoe666@fake.com\",\n            \"phone\": \"80055555554\",\n            \"brokerage\": \"61607a2bb65a870003b2a306\",\n            \"firstName\": \"Joe66644\",\n            \"lastName\": \"Doe66644\",\n            \"displayName\": \"Joe66644 Doe66644\",\n            \"pathName\": \"P&G Insurance Brokers, Inc. > Joe66644 Doe66644\"\n        },\n        {\n            \"id\": \"68517c9b891ec56234f18f4f\",\n            \"email\": \"fixbroker@gmail.com\",\n            \"phone\": \"232-454-233\",\n            \"brokerage\": \"616075ddb65a870003b29d06\",\n            \"firstName\": \"Fixed Broker\",\n            \"lastName\": \"Broker\",\n            \"displayName\": \"Fixed Broker Broker\",\n            \"pathName\": \"Ellen Klinger > Fixed Broker Broker\"\n        },\n        {\n            \"id\": \"685031f11b791d62d1b545ad\",\n            \"email\": \"broker@gmail.com\",\n            \"phone\": \"340-484-93\",\n            \"brokerage\": \"685031d11b791d62d1b545a4\",\n            \"firstName\": \"broker 2\",\n            \"lastName\": \"broker\",\n            \"displayName\": \"broker 2 broker\",\n            \"pathName\": \"hi brok > broker 2 broker\"\n        },\n        {\n            \"id\": \"685031401b791d62d1b54577\",\n            \"email\": \"broker@create.com\",\n            \"phone\": \"210-8449-6690\",\n            \"brokerage\": \"616075ddb65a870003b29d06\",\n            \"firstName\": \"broker create\",\n            \"lastName\": \"1\",\n            \"displayName\": \"broker create 1\",\n            \"pathName\": \"Ellen Klinger > broker create 1\"\n        },\n        {\n            \"id\": \"685020511b791d62d1afc4ac\",\n            \"email\": \"hi@78.com\",\n            \"phone\": \"3\",\n            \"brokerage\": \"6850203a1b791d62d1af71c2\",\n            \"firstName\": \"hiiiiiiiiii88\",\n            \"lastName\": \"88\",\n            \"displayName\": \"hiiiiiiiiii88 88\",\n            \"pathName\": \"hiiiii5 > hiiiiiiiiii88 88\"\n        },\n        {\n            \"id\": \"68501e9a1b791d62d1a6867e\",\n            \"email\": \"testduplicate@hi.com\",\n            \"phone\": \"11\",\n            \"brokerage\": \"616075ddb65a870003b29d06\",\n            \"firstName\": \"Test duplicate\",\n            \"lastName\": \"Test duplicate\",\n            \"displayName\": \"Test duplicate Test duplicate\",\n            \"pathName\": \"Ellen Klinger > Test duplicate Test duplicate\"\n        },\n        {\n            \"id\": \"684d6098be44a129de04bd52\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"6160a9dab65a870003b2bf16\",\n            \"firstName\": \"Testtttt\",\n            \"lastName\": \"tttt\",\n            \"displayName\": \"Testtttt tttt\",\n            \"pathName\": \"Chris Johnson - State Farm Insurance Agent > Testtttt tttt\"\n        },\n        {\n            \"id\": \"684d6056be44a129de04bca1\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"684d604ebe44a129de04bc98\",\n            \"firstName\": \"Joe\",\n            \"lastName\": \"Doe\",\n            \"displayName\": \"Joe Doe\",\n            \"pathName\": \"hi > Joe Doe\"\n        },\n        {\n            \"id\": \"684d5e5cbe44a129de035552\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"616075ddb65a870003b29d06\",\n            \"firstName\": \"hiiiiii\",\n            \"lastName\": \"lol\",\n            \"displayName\": \"hiiiiii lol\",\n            \"pathName\": \"Ellen Klinger > hiiiiii lol\"\n        },\n        {\n            \"id\": \"684d5cb2be44a129de0273be\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"684d5caebe44a129de0273b5\",\n            \"firstName\": \"Joe\",\n            \"lastName\": \"Doe\",\n            \"displayName\": \"Joe Doe\",\n            \"pathName\": \"hiii > Joe Doe\"\n        },\n        {\n            \"id\": \"684d5b88be44a129de01668c\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"616075ddb65a870003b29d06\",\n            \"firstName\": \"Test Zenia 2\",\n            \"lastName\": \"Best Broker\",\n            \"displayName\": \"Test Zenia 2 Best Broker\",\n            \"pathName\": \"Ellen Klinger > Test Zenia 2 Best Broker\"\n        },\n        {\n            \"id\": \"684d5b61be44a129de016633\",\n            \"email\": \"zenia@tryadvocate.com\",\n            \"phone\": \"5555\",\n            \"brokerage\": \"616454d79ce3470003156c81\",\n            \"firstName\": \"Test Zenia\",\n            \"lastName\": \"Best BROKER\",\n            \"displayName\": \"Test Zenia Best BROKER\",\n            \"pathName\": \"Transworld Inc. Insurance Agency > Test Zenia Best BROKER\"\n        },\n        {\n            \"id\": \"67877eedcc512d5c3adfa1c2\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"61607a2bb65a870003b2a306\",\n            \"firstName\": \"Joe\",\n            \"lastName\": \"Doe\",\n            \"displayName\": \"Joe Doe\",\n            \"pathName\": \"P&G Insurance Brokers, Inc. > Joe Doe\"\n        },\n        {\n            \"id\": \"67877e8acc512d5c3adfa051\",\n            \"email\": \"jdoe@fake.com\",\n            \"phone\": \"8005555555\",\n            \"brokerage\": \"616080aab65a870003b2aafa\",\n            \"firstName\": \"Joe\",\n            \"lastName\": \"Doe\",\n            \"displayName\": \"Joe Doe\",\n            \"pathName\": \"Gibson & Wirt > Joe Doe\"\n        }\n    ]\n}"}],"_postman_id":"d4d2fe56-961b-49d3-8d00-e65ecb94f3ec"},{"name":"Brokers id","event":[{"listen":"test","script":{"id":"b5b67980-c793-46fb-8621-90f0331bc848","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","",""],"type":"text/javascript","packages":{}}}],"id":"64fe440f-b564-46d9-b60f-35fc37204b47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/brokers/6735cca449af9f577604219f","description":"<h2 id=\"retrieve-broker-details\">Retrieve Broker Details</h2>\n<p>This endpoint retrieves detailed information about a specific broker identified by the <code>brokerId</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>brokerId</strong> (path parameter): The unique identifier for the broker whose details are being requested. This parameter is required.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>On a successful request, the API will return a JSON object containing the details of the broker. The response will typically include fields such as:</p>\n<ul>\n<li><p><strong>id</strong>: The unique identifier of the broker.</p>\n</li>\n<li><p><strong>name</strong>: The name of the broker.</p>\n</li>\n<li><p><strong>status</strong>: The current status of the broker (e.g., active, inactive).</p>\n</li>\n<li><p><strong>created_at</strong>: The timestamp when the broker was created.</p>\n</li>\n<li><p><strong>updated_at</strong>: The timestamp of the last update to the broker's details.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>brokerId</code> provided in the request is valid to avoid errors.</p>\n</li>\n<li><p>The response will return a 200 OK status on success, while errors will return appropriate HTTP status codes (e.g., 404 if the broker is not found).</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","brokers","6735cca449af9f577604219f"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"3526fddf-5918-4360-9b34-b47ed1f1ebeb","name":"Brokers id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/brokers/6735cca449af9f577604219f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:42:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"214"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6735cca449af9f577604219f\",\n        \"email\": \"testaki@gmail.com\",\n        \"brokerage\": \"6735cc9908c354b262b13f0a\",\n        \"firstName\": \"test\",\n        \"lastName\": \"testaki\",\n        \"displayName\": \"test testaki\",\n        \"pathName\": \"testaki > test testaki\"\n    }\n}"}],"_postman_id":"64fe440f-b564-46d9-b60f-35fc37204b47"},{"name":"Brokerages","event":[{"listen":"test","script":{"id":"5934a642-4c9b-43e4-9f4f-a208c8bf7fc8","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"a856b781-4aa2-4512-9920-4df241af4874","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/brokerages","description":"<h2 id=\"endpoint-retrieve-brokerages\">Endpoint: Retrieve Brokerages</h2>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint allows users to retrieve a list of brokerages available in the system. It is useful for applications that need to display brokerage options or perform operations related to brokerages.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/brokerages</code></p>\n</li>\n<li><p><strong>Request Body</strong>: No request body is required for this GET request.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be a JSON object containing an array of brokerages. Each brokerage object may include the following fields:</p>\n<ul>\n<li><p><code>id</code>: Unique identifier for the brokerage.</p>\n</li>\n<li><p><code>name</code>: Name of the brokerage.</p>\n</li>\n<li><p><code>location</code>: Location of the brokerage.</p>\n</li>\n<li><p><code>services</code>: List of services offered by the brokerage.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"brokerages\": [\n    {\n      \"id\": \"1\",\n      \"name\": \"Brokerage A\",\n      \"location\": \"Location A\",\n      \"services\": [\"Service 1\", \"Service 2\"]\n    },\n    {\n      \"id\": \"2\",\n      \"name\": \"Brokerage B\",\n      \"location\": \"Location B\",\n      \"services\": [\"Service 3\", \"Service 4\"]\n    }\n  ]\n}\n\n</code></pre>\n<p>This structure allows the client to easily parse and utilize the brokerage information for further processing or display.</p>\n","urlObject":{"path":["rest","brokerages"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"6fd1481f-416f-4118-bc83-c59a59e97b8b","name":"Brokerages - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/brokerages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:42:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1248"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 6069,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"6850329f1b791d62d1b545b3\",\n            \"name\": \"6767\",\n            \"mailingAddress\": \"766767\"\n        },\n        {\n            \"id\": \"685031d11b791d62d1b545a4\",\n            \"name\": \"hi brok\",\n            \"mailingAddress\": \"233 13 street\"\n        },\n        {\n            \"id\": \"6850203a1b791d62d1af71c2\",\n            \"name\": \"hiiiii5\",\n            \"mailingAddress\": \"weee4\"\n        },\n        {\n            \"id\": \"685020071b791d62d1ae832c\",\n            \"name\": \"hi 55\",\n            \"mailingAddress\": \"hr\"\n        },\n        {\n            \"id\": \"68501fe21b791d62d1adba26\",\n            \"name\": \"hi5\",\n            \"mailingAddress\": \"hiii\"\n        },\n        {\n            \"id\": \"684d62a9be44a129de04beb3\",\n            \"name\": \"test brokerage the best one\",\n            \"mailingAddress\": \"the best\"\n        },\n        {\n            \"id\": \"684d604ebe44a129de04bc98\",\n            \"name\": \"hi\",\n            \"mailingAddress\": \"hu\"\n        },\n        {\n            \"id\": \"684d5caebe44a129de0273b5\",\n            \"name\": \"hiii\",\n            \"mailingAddress\": \"hiiii\"\n        },\n        {\n            \"id\": \"675592028ab3a1309a8cc3f1\",\n            \"name\": \"policy testeee\",\n            \"mailingAddress\": \"56 street\"\n        },\n        {\n            \"id\": \"6750ce5e0f47d7f61a888e1b\",\n            \"name\": \"Dellu\",\n            \"mailingAddress\": \"2312 Hope\"\n        },\n        {\n            \"id\": \"6735cc9908c354b262b13f0a\",\n            \"name\": \"testaki\",\n            \"mailingAddress\": \".\"\n        },\n        {\n            \"id\": \"66f560759997a06c3d474f09\",\n            \"name\": \"Dummy Data\",\n            \"mailingAddress\": \"Test\"\n        },\n        {\n            \"id\": \"66f5603c9997a06c3d471b89\",\n            \"name\": \"test\",\n            \"mailingAddress\": \"test test\"\n        },\n        {\n            \"id\": \"66ea8f974e3f7c5c97e8b2ee\",\n            \"name\": \"Test broke 21\",\n            \"mailingAddress\": \"2422\"\n        },\n        {\n            \"id\": \"66e949474e3f7c5c97c947a9\",\n            \"name\": \"zen brokerage 2\",\n            \"mailingAddress\": \"zenbrokerage2@advocate.com\"\n        }\n    ]\n}"}],"_postman_id":"a856b781-4aa2-4512-9920-4df241af4874"},{"name":"Brokerages id","event":[{"listen":"test","script":{"id":"16f6d00b-d383-4499-bf7d-8022558a4d7a","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"1aea3733-d054-4d48-b4fd-d346ad34176e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/brokerages/6735cc9908c354b262b13f0a","description":"<h2 id=\"get-brokerage-details\">Get Brokerage Details</h2>\n<p>This endpoint retrieves detailed information about a specific brokerage identified by the <code>brokerageId</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><code>brokerageId</code> (path parameter): The unique identifier of the brokerage for which details are being requested. This parameter is required.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>The response will return a JSON object containing the details of the specified brokerage. The structure of the response may include attributes such as:</p>\n<ul>\n<li><p><code>id</code>: The unique identifier of the brokerage.</p>\n</li>\n<li><p><code>name</code>: The name of the brokerage.</p>\n</li>\n<li><p><code>address</code>: The physical address of the brokerage.</p>\n</li>\n<li><p><code>contactInfo</code>: Contact details including phone number and email.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>brokerageId</code> provided in the request is valid to receive the correct brokerage details.</p>\n</li>\n<li><p>If the <code>brokerageId</code> does not exist, the API may return an error response indicating that the brokerage was not found.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","brokerages","6735cc9908c354b262b13f0a"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"7d4aafd7-1df7-43d6-96c1-fcbd05e372dd","name":"Brokerages id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/brokerages/6735cc9908c354b262b13f0a"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:42:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"80"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6735cc9908c354b262b13f0a\",\n        \"name\": \"testaki\",\n        \"mailingAddress\": \".\"\n    }\n}"}],"_postman_id":"1aea3733-d054-4d48-b4fd-d346ad34176e"},{"name":"Documents","event":[{"listen":"test","script":{"id":"ba9d4fba-724b-4ceb-9e19-192379ec4b03","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('documentId', responseData.data[0].id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"db84a456-4b3e-4b34-9634-6a03f9231d8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h2 id=\"get-restdocuments\">GET /rest/documents</h2>\n<p>This endpoint retrieves a list of documents from the server. It allows users to access all available documents, which can be useful for viewing, managing, or processing document-related information.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/documents</code></p>\n</li>\n<li><p><strong>Request Body</strong>: No request body is required for this endpoint.</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will contain a JSON object that includes:</p>\n<ul>\n<li><p>A list of documents, where each document may contain various attributes such as:</p>\n<ul>\n<li><p><code>id</code>: Unique identifier for the document.</p>\n</li>\n<li><p><code>title</code>: The title of the document.</p>\n</li>\n<li><p><code>created_at</code>: Timestamp indicating when the document was created.</p>\n</li>\n<li><p><code>updated_at</code>: Timestamp indicating when the document was last updated.</p>\n</li>\n<li><p>Additional metadata related to the document.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li><p>?id[eq]=YourId</p>\n</li>\n<li><p>?caseId[eq]=YourId</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"documents\": [\n    {\n      \"id\": \"1\",\n      \"title\": \"Document Title 1\",\n      \"created_at\": \"2023-01-01T12:00:00Z\",\n      \"updated_at\": \"2023-01-02T12:00:00Z\"\n    },\n    {\n      \"id\": \"2\",\n      \"title\": \"Document Title 2\",\n      \"created_at\": \"2023-01-03T12:00:00Z\",\n      \"updated_at\": \"2023-01-04T12:00:00Z\"\n    }\n  ]\n}\n\n</code></pre>\n<p>This structure allows clients to easily iterate through the list of documents and access relevant details for each document.</p>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"21f82950-9930-4d8a-9769-c27c253f15a2","name":"Documents - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:43:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"12813"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 191,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"6853064e9c8ebe5a6504e6b1\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"685306299c8ebe5a6504e3d7\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T18:32:46.192Z\",\n            \"updatedAt\": \"2025-06-18T18:37:21.987Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\",\n                \"Two-MetaDataLongString\": \"Meta String  Two\",\n                \"Three-MetaDataString\": \"Meta String Three\",\n                \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n                \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n            }\n        },\n        {\n            \"id\": \"6852fbc19c8ebe5a6504c6ab\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:47:45.423Z\",\n            \"updatedAt\": \"2025-06-18T17:47:45.423Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852fb4c9c8ebe5a6504b063\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:45:48.922Z\",\n            \"updatedAt\": \"2025-06-18T17:45:48.922Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852faf99c8ebe5a6504ab26\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f9d59c8ebe5a6504a84c\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:44:25.237Z\",\n            \"updatedAt\": \"2025-06-18T17:44:25.237Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f97b9c8ebe5a6504a5e9\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f94b9c8ebe5a6504a30f\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:38:03.327Z\",\n            \"updatedAt\": \"2025-06-18T17:38:03.327Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f9289c8ebe5a6504a1ef\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f8eb9c8ebe5a65049f15\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:36:40.612Z\",\n            \"updatedAt\": \"2025-06-18T17:36:40.612Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f17c9c8ebe5a65049308\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f1789c8ebe5a65048d81\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:03:56.573Z\",\n            \"updatedAt\": \"2025-06-18T17:03:56.573Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1749c8ebe5a650476ee\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f1729c8ebe5a65047414\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:03:48.399Z\",\n            \"updatedAt\": \"2025-06-18T17:03:48.399Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1719c8ebe5a650471b1\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f16f9c8ebe5a65046ed7\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:03:45.462Z\",\n            \"updatedAt\": \"2025-06-18T17:03:45.462Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f16e9c8ebe5a65046c74\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f16c9c8ebe5a6504699a\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:03:42.085Z\",\n            \"updatedAt\": \"2025-06-18T17:03:42.085Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f16b9c8ebe5a650468b0\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"6852f1689c8ebe5a650465df\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T17:03:39.153Z\",\n            \"updatedAt\": \"2025-06-18T17:03:39.153Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab2ed6a91c15ef16e71c\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"684aab2dd6a91c15ef16e44b\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-12T10:25:50.836Z\",\n            \"updatedAt\": \"2025-06-12T10:26:08.039Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"1234567890\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684aab2bd6a91c15ef16e2df\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"684aab21d6a91c15ef16c5b0\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-12T10:25:47.491Z\",\n            \"updatedAt\": \"2025-06-12T10:25:47.491Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab28d6a91c15ef16de88\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"684aab26d6a91c15ef16d913\",\n            \"fileExt\": \"jpeg\",\n            \"fileName\": \"profile.jpeg\",\n            \"fileType\": \"image/jpeg\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-12T10:25:44.323Z\",\n            \"updatedAt\": \"2025-06-12T10:25:44.323Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab22d6a91c15ef16c88a\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"684aab21d6a91c15ef16c5b0\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"filename.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-12T10:25:38.872Z\",\n            \"updatedAt\": \"2025-06-12T10:25:38.872Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"db84a456-4b3e-4b34-9634-6a03f9231d8a"},{"name":"Documents","event":[{"listen":"test","script":{"id":"06e3f643-0a52-4aa0-9ce0-dbe5db49ac87","exec":["const responseData = pm.response.json().data[0];","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"a1bbf9d6-d78e-4cf9-acdc-a5e0775dc0c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"docs\":\n    [\n        {\n            \"id\": \"6750239dbc0b293e7c24eba4\"\n        }\n\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents","description":"<h2 id=\"patch-restdocuments\">PATCH /rest/documents</h2>\n<p>This endpoint allows you to update existing documents in the system. It is specifically designed to modify the properties of documents identified by their unique IDs.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request requires a JSON payload containing an array of documents to be updated. The structure of the request body is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"docs\": [\n    {\n      \"id\": \"6750239dbc0b293e7c24eba4\"\n      \"metaData\": {\"metaKey\":\"yourString\"}\n    }\n  ]\n}\n\n</code></pre>\n<ul>\n<li><p><strong>docs</strong>: An array of document objects to be updated.</p>\n<ul>\n<li><strong>id</strong> (string): The unique identifier of the document that you want to update.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response from this endpoint will provide information regarding the success or failure of the update operation. The structure of the response will typically include:</p>\n<ul>\n<li><p>A status indicating whether the update was successful.</p>\n</li>\n<li><p>Any relevant messages or error details if the update failed.</p>\n</li>\n</ul>\n<p>Make sure to replace <code>6750239dbc0b293e7c24eba4</code> with the actual ID of the document you wish to update when making the request.</p>\n","urlObject":{"path":["rest","documents"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"58a4d15f-3224-4906-9164-e05cfdb4dc7d","name":"Documents - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{ \n    \"docs\":\n    [\n        {\n            \"id\": \"6750239dbc0b293e7c24eba4\"\n        }\n\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:43:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1046"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6853064e9c8ebe5a6504e6b1\",\n            \"name\": \"RestAPIDocumentName\",\n            \"caseId\": \"685306299c8ebe5a6504e3d7\",\n            \"fileExt\": \"pdf\",\n            \"fileName\": \"Case #23452345.pdf\",\n            \"fileType\": \"application/pdf\",\n            \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n            \"createdAt\": \"2025-06-18T18:32:46.192Z\",\n            \"updatedAt\": \"2025-06-18T18:43:14.663Z\",\n            \"url\": \"docUrl\",\n            \"versions\": [],\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\",\n                \"Two-MetaDataLongString\": \"Meta String  Two\",\n                \"Three-MetaDataString\": \"Meta String Three\",\n                \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n                \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n            }\n        }\n    ]\n}"}],"_postman_id":"a1bbf9d6-d78e-4cf9-acdc-a5e0775dc0c1"},{"name":"Documents id","event":[{"listen":"test","script":{"id":"ada8c5d9-6d31-4778-b4c1-564290bacf4b","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"aaa5cba4-d340-4cf8-bc2d-74bb4a18da18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/documents/6750239dbc0b293e7c24eba4","description":"<h2 id=\"retrieve-document\">Retrieve Document</h2>\n<p>This endpoint allows users to retrieve a specific document by its unique identifier.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/documents/6750239dbc0b293e7c24eba4</code></p>\n</li>\n</ul>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<ul>\n<li><code>documentId</code> (string): The unique identifier of the document you wish to retrieve.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the response will contain the details of the requested document. The structure of the response typically includes:</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier of the document.</p>\n</li>\n<li><p><strong>title</strong> (string): The title of the document.</p>\n</li>\n<li><p><strong>content</strong> (string): The main content of the document.</p>\n</li>\n<li><p><strong>created_at</strong> (string): The timestamp when the document was created.</p>\n</li>\n<li><p><strong>updated_at</strong> (string): The timestamp when the document was last updated.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"documentId\",\n  \"title\": \"Document Title\",\n  \"content\": \"Document content goes here.\",\n  \"created_at\": \"2023-01-01T00:00:00Z\",\n  \"updated_at\": \"2023-01-02T00:00:00Z\"\n}\n\n</code></pre>\n<p>Ensure that you replace <code>6750239dbc0b293e7c24eba4</code> with the actual ID of the document you want to retrieve.</p>\n","urlObject":{"path":["rest","documents","6750239dbc0b293e7c24eba4"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"4f898593-cbe2-4141-ac48-9de0b289d49c","name":"Documents id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/documents/6750239dbc0b293e7c24eba4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:43:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1044"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6853064e9c8ebe5a6504e6b1\",\n        \"name\": \"RestAPIDocumentName\",\n        \"caseId\": \"685306299c8ebe5a6504e3d7\",\n        \"fileExt\": \"pdf\",\n        \"fileName\": \"Case #23452345.pdf\",\n        \"fileType\": \"application/pdf\",\n        \"categoryId\": \"606b53c16c1ef7e79a951afb\",\n        \"createdAt\": \"2025-06-18T18:32:46.192Z\",\n        \"updatedAt\": \"2025-06-18T18:43:14.663Z\",\n        \"url\": \"docUrl\",\n        \"versions\": [],\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"aaa5cba4-d340-4cf8-bc2d-74bb4a18da18"},{"name":"Case id","event":[{"listen":"test","script":{"id":"721b80b8-c7d6-4ea5-9ed2-d3a1d5230fca","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"25f5f864-bb2a-402a-ae4a-dab1b6070d83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750238dbc0b293e7c24d613","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint retrieves detailed information about a specific case identified by <code>newCaseNoDocId</code>. It is used to fetch case details for further processing or display in the application.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases/6750238dbc0b293e7c24d613</code></p>\n</li>\n</ul>\n<h4 id=\"headers\">Headers</h4>\n<ul>\n<li><p><strong>Authorization</strong>: Required. Include a valid token to authenticate the request.</p>\n</li>\n<li><p><strong>Content-Type</strong>: <code>application/json</code> (optional, generally not needed for GET requests)</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>caseId</strong>: Unique identifier for the case.</p>\n</li>\n<li><p><strong>borrowerName</strong>: Name of the borrower associated with the case.</p>\n</li>\n<li><p><strong>caseAmount</strong>: Total amount of the case.</p>\n</li>\n<li><p><strong>interestRate</strong>: Interest rate applicable to the case.</p>\n</li>\n<li><p><strong>caseStatus</strong>: Current status of the case (e.g., active, closed).</p>\n</li>\n<li><p><strong>createdDate</strong>: Date when the case was created.</p>\n</li>\n<li><p><strong>updatedDate</strong>: Date when the case details were last updated.</p>\n</li>\n</ul>\n<p>Filters</p>\n<ul>\n<li><p>?isEscrow[eq]=false/true</p>\n</li>\n<li><p>?id[eq]=yourID</p>\n</li>\n<li><p>?externalId[eq]=yourID</p>\n</li>\n</ul>\n<p>Example Response</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"caseId\": \"12345\",\n  \"borrowerName\": \"John Doe\",\n  \"caseAmount\": 50000,\n  \"interestRate\": 5.5,\n  \"caseStatus\": \"active\",\n  \"createdDate\": \"2021-01-01T00:00:00Z\",\n  \"updatedDate\": \"2023-01-01T00:00:00Z\"\n}\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<p>Ensure that the <code>newCaseNoDocId</code> parameter is properly formatted and corresponds to an existing case in the system. The response will return an error if the case ID is invalid or if the user does not have permission to access the requested case details.</p>\n","urlObject":{"path":["rest","cases","6750238dbc0b293e7c24d613"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"98b8bcf9-1891-4f9a-aa31-5231da24881f","name":"Case id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750238dbc0b293e7c24d613"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:43:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"731"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6852f3f19c8ebe5a65049743\",\n        \"externalId\": \"576142251-785873347\",\n        \"name\": \"New-Case-RestAPICase No Docs\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:14:25.359Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T18:14:25.359Z\",\n        \"expectedMaturingAt\": \"2025-12-15T18:14:25.359Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T17:14:25.786Z\",\n        \"updatedAt\": \"2025-06-18T17:35:17.859Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"25f5f864-bb2a-402a-ae4a-dab1b6070d83"},{"name":"Cases","event":[{"listen":"test","script":{"id":"f797afce-ecc9-4371-8e06-b330c53a50f9","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('externalIdFiltering', responseData.data[0].externalId)","pm.collectionVariables.set('firstCaseIdInARow', responseData.data[0].id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"939c7613-8e8d-4196-976d-de78a77a9b91","exec":[""],"type":"text/javascript","packages":{}}}],"id":"165d7644-4e89-4b16-bc1c-c2eb27d3fdd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases","description":"<h2 id=\"get-cases\">Get Cases</h2>\n<p>This endpoint retrieves a list of cases from the system. It is a simple HTTP GET request that does not require any request body parameters.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p><em>You can use two types of operators [in] comma separated or [eq] = specific value</em></p>\n<ul>\n<li><p><code>?externalId[in]</code>A comma-separated list of external IDs used to filter the case records. This parameter is required for the request. - https://api-v2-test.tryadvocate.com/rest/cases?externalId[in]=965255386-949920728</p>\n</li>\n<li><p><code>?status[eq]=onboarding</code> Filtering by case statuses - Open, Approved, Onboarding, Deactivated</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful execution, the response will include:</p>\n<ul>\n<li><p>A list of case objects, each containing details such as case ID, amount, interest rate, and status.</p>\n</li>\n<li><p>A status code of <code>200 OK</code> indicating that the request was processed successfully.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the necessary permissions to access the cases data.</p>\n</li>\n<li><p>The response may vary depending on the user's access level and the cases available in the system.</p>\n</li>\n<li><p>In case of an error, appropriate error codes and messages will be returned.</p>\n</li>\n</ul>\n<p>Use this endpoint to retrieve case information for further processing or display.</p>\n","urlObject":{"path":["rest","cases"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"2e475552-411d-44af-b47e-0ec8cc00f1fc","name":"Cases - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/cases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:45:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11279"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 350,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"685306299c8ebe5a6504e3d7\",\n            \"externalId\": \"758188486-700472372\",\n            \"name\": \"Edit Case Name Test 2025-06-18T18:36:36.031Z\",\n            \"tenor\": 255,\n            \"type\": \"new\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6853064e9c8ebe5a6504e6b1\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T19:32:08.911Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T19:32:08.911Z\",\n            \"expectedMaturingAt\": \"2025-12-15T19:32:08.911Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T18:32:09.408Z\",\n            \"updatedAt\": \"2025-06-18T18:36:37.857Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\",\n                \"Two-MetaDataLongString\": \"Meta String  Two\",\n                \"Three-MetaDataString\": \"Meta String Three\",\n                \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n                \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n            }\n        },\n        {\n            \"id\": \"6852fb899c8ebe5a6504c0ea\",\n            \"externalId\": \"632027995-916578943\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n            \"tenor\": 99,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": true,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852fbc19c8ebe5a6504c6ab\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"expectedMaturingAt\": \"2025-07-18T17:46:49.036Z\",\n            \"complianceReview\": FUTURE,\n            \"createdAt\": \"2025-06-18T17:46:49.239Z\",\n            \"updatedAt\": \"2025-06-18T18:23:02.632Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852fb119c8ebe5a6504ad89\",\n            \"externalId\": \"145780752-188734989\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n            \"tenor\": 255,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852fb4c9c8ebe5a6504b063\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"685304529c8ebe5a6504e27d\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:44:48.999Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:44:48.999Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:44:48.999Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:44:49.197Z\",\n            \"updatedAt\": \"2025-06-18T18:24:56.334Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f9d59c8ebe5a6504a84c\",\n            \"externalId\": \"191195757-607289052\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n            \"tenor\": 255,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852faf99c8ebe5a6504ab26\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:39:33.002Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:39:33.002Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:39:33.002Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:39:33.466Z\",\n            \"updatedAt\": \"2025-06-18T17:44:37.111Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f94b9c8ebe5a6504a30f\",\n            \"externalId\": \"658939807-966179636\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n            \"tenor\": 255,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852f97b9c8ebe5a6504a5e9\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:37:14.850Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:37:14.850Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:37:14.850Z\",\n            \"complianceReview\": FUTURE,\n            \"createdAt\": \"2025-06-18T17:37:15.050Z\",\n            \"updatedAt\": \"2025-06-18T17:38:17.542Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f8eb9c8ebe5a65049f15\",\n            \"externalId\": \"682029669-565804996\",\n            \"name\": \"New-Case-RestAPICase Docs\",\n            \"tenor\": 255,\n            \"type\": \"new\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852f9289c8ebe5a6504a1ef\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:35:39.589Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:35:39.589Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:35:39.589Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:35:39.789Z\",\n            \"updatedAt\": \"2025-06-18T17:36:56.942Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f3f19c8ebe5a65049743\",\n            \"externalId\": \"576142251-785873347\",\n            \"name\": \"New-Case-RestAPICase No Docs\",\n            \"tenor\": 255,\n            \"type\": \"new\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:14:25.359Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:14:25.359Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:14:25.359Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:14:25.786Z\",\n            \"updatedAt\": \"2025-06-18T17:35:17.859Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f3629c8ebe5a65049718\",\n            \"externalId\": \"787947539-289486203\",\n            \"name\": \"New-Case-RestAPICase No Docs\",\n            \"tenor\": 255,\n            \"type\": \"new\",\n            \"status\": \"draft\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:12:02.016Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:12:02.016Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:12:02.016Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:12:02.501Z\",\n            \"updatedAt\": \"2025-06-18T17:12:02.551Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null,\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1789c8ebe5a65048d81\",\n            \"externalId\": \"770308214-258766373\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n            \"tenor\": 99,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": true,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852f17c9c8ebe5a65049308\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"expectedMaturingAt\": \"2025-07-18T17:03:52.228Z\",\n            \"complianceReview\": FUTURE,\n            \"createdAt\": \"2025-06-18T17:03:52.341Z\",\n            \"updatedAt\": \"2025-06-18T18:39:04.234Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1729c8ebe5a65047414\",\n            \"externalId\": \"106915322-752565171\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n            \"tenor\": 255,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852f1749c8ebe5a650476ee\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:03:46.522Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:03:46.522Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:03:46.522Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:03:46.637Z\",\n            \"updatedAt\": \"2025-06-18T17:03:54.365Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f16f9c8ebe5a65046ed7\",\n            \"externalId\": \"353811736-214728047\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n            \"tenor\": 255,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852f1719c8ebe5a650471b1\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:03:43.090Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:03:43.090Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:03:43.090Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:03:43.204Z\",\n            \"updatedAt\": \"2025-06-18T17:03:46.964Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f16c9c8ebe5a6504699a\",\n            \"externalId\": \"743826105-774446052\",\n            \"name\": \"Renewal-Case-RestAPICase Docs Renewal Name\",\n            \"tenor\": 255,\n            \"type\": \"renewal\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852f16e9c8ebe5a65046c74\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:03:40.150Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:03:40.150Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:03:40.150Z\",\n            \"complianceReview\": FUTURE,\n            \"createdAt\": \"2025-06-18T17:03:40.269Z\",\n            \"updatedAt\": \"2025-06-18T17:03:43.530Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1689c8ebe5a650465df\",\n            \"externalId\": \"890138215-929589694\",\n            \"name\": \"New-Case-RestAPICase Docs\",\n            \"tenor\": 255,\n            \"type\": \"new\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [\n                \"6852f16b9c8ebe5a650468b0\"\n            ],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:03:36.832Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:03:36.832Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:03:36.832Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:03:36.950Z\",\n            \"updatedAt\": \"2025-06-18T17:03:40.879Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6852f1679c8ebe5a65046236\",\n            \"externalId\": \"558176519-629701941\",\n            \"name\": \"New-Case-RestAPICase No Docs\",\n            \"tenor\": 255,\n            \"type\": \"new\",\n            \"status\": \"OPEN\",\n            \"isEscrow\": false,\n            \"program\": \"677cfe461840abee910c6af4\",\n            \"documents\": [],\n            \"insured\": [\n                \"68527909891ec5623415b040\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-15T18:03:34.927Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-15T18:03:34.927Z\",\n            \"expectedMaturingAt\": \"2025-12-15T18:03:34.927Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-18T17:03:35.058Z\",\n            \"updatedAt\": \"2025-06-18T17:03:38.539Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68515b9df2c1645bb0931b1a\",\n            \"externalId\": \"197875705-888143145\",\n            \"name\": \"New-Case-RestAPICase Docs\",\n            \"tenor\": 255,\n            \"type\": \"new\",\n            \"status\": \"draft\",\n            \"isEscrow\": false,\n            \"program\": \"684fd26abe44a129de186c28\",\n            \"documents\": [],\n            \"insured\": [\n                \"684bf3c2f70b7085cd47ce0f\"\n            ],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"insuranceContactsCC\": [],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aee\"\n            ],\n            \"dealClosingAt\": \"2025-12-14T13:12:13.019Z\",\n            \"riskReviewDeadlineAt\": \"2025-12-14T13:12:13.019Z\",\n            \"expectedMaturingAt\": \"2025-12-14T13:12:13.019Z\",\n            \"complianceReview\": NOW,\n            \"createdAt\": \"2025-06-17T12:12:13.528Z\",\n            \"updatedAt\": \"2025-06-17T14:39:44.039Z\",\n            \"assignedTo\": null,\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\",\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"165d7644-4e89-4b16-bc1c-c2eb27d3fdd3"},{"name":"Case Deactivation","id":"b4d39233-d088-42b6-b8f3-62a206317351","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/{{YourCaseID}}/deactivate","description":"<h2 id=\"deactivate-case-endpoint\">Deactivate Case Endpoint</h2>\n<p>This endpoint allows users to deactivate a specific case identified by <code>YourCaseID</code>. Deactivating a case may be necessary for various reasons, such as closing a case that is no longer active or removing it from the active list of cases.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases/{{YourCaseID}}/deactivate</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>Not required.</p>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful deactivation request, the server will respond with a JSON object that includes the following structure:</p>\n<ul>\n<li><p><code>status</code>: A string indicating the success or failure of the operation.</p>\n</li>\n<li><p><code>message</code>: A string providing additional information about the operation, such as confirmation of deactivation or error details.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Case has been successfully deactivated.\"\n}\n\n</code></pre>\n<p>This endpoint is crucial for maintaining the integrity and accuracy of case management within the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}},"urlObject":{"path":["rest","cases","{{YourCaseID}}","deactivate"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4d39233-d088-42b6-b8f3-62a206317351"},{"name":"Case Re-Activation","id":"dfcd5d8d-0c01-4e89-ae1e-372b4fd5adc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/cases/{{YourCaseID}}/reactivcate","description":"<h2 id=\"reactivate-case-endpoint\">Reactivate Case Endpoint</h2>\n<p>This endpoint allows users to reactivate a specific case identified by <code>YourCaseID</code>. By sending a POST request to this endpoint, the user can initiate the reactivation process for a previously closed or inactive case.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/cases/{{YourCaseID}}/reactivate</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>Not required</p>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful request, the API will return a response containing the following:</p>\n<ul>\n<li><p><strong>status</strong> (string): Indicates the success or failure of the reactivation process.</p>\n</li>\n<li><p><strong>message</strong> (string): Provides additional information about the result of the request, such as confirmation of reactivation or details about any errors encountered.</p>\n</li>\n<li><p><strong>caseID</strong> (string): The ID of the case that has been reactivated.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Case reactivated successfully.\",\n  \"caseID\": \"{{YourCaseID}}\"\n}\n\n</code></pre>\n<p>This endpoint is crucial for managing case workflows effectively, allowing users to reinstate cases as necessary.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}},"urlObject":{"path":["rest","cases","{{YourCaseID}}","reactivcate"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dfcd5d8d-0c01-4e89-ae1e-372b4fd5adc9"},{"name":"Case id","event":[{"listen":"test","script":{"id":"4159acf2-9390-438b-acd8-1780b1ccaa39","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"9621431d-f717-49eb-8de6-3ab895c8b9f8","exec":["function generatenameString() {","    const timeStamp = new Date().toISOString();","    const name = `Edit Case Name Test ${timeStamp}`; ","","    pm.collectionVariables.set(\"editedname\", name);","}","","generatenameString();",""],"type":"text/javascript","packages":{}}}],"id":"13fa52f2-3f20-49bf-ba45-f76eb026e7d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Edit Case Name Test 2024-12-04T09:40:58.693Z\"\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db","description":"<h2 id=\"update-case-name\">Update Case Name</h2>\n<p>This endpoint allows you to update the name of an existing case.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method:</strong> PATCH</p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db</code></p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be formatted as JSON and can contain the following editable parameter:</p>\n<ul>\n<li><p><code>externalId</code> (string): A unique identifier for the case.</p>\n</li>\n<li><p><code>tenor</code> (number): Tenor of the case</p>\n</li>\n<li><p><code>name</code> (string): Name of your case,</p>\n</li>\n<li><p><code>type</code> (string): The type of service being requested, e.g., <code>new/renewal</code>.</p>\n</li>\n<li><p><code>program</code> (string): The program associated with the case.</p>\n</li>\n<li><p><code>isEscrow</code> (boolean): Indicates if premiums are paid by the account on behalf of the insured.</p>\n</li>\n<li><p><code>insureds</code> (array): An array that contains insured ids</p>\n</li>\n<li><p><code>insuranceContacts</code> (array): An array that contains insurance contacts ids</p>\n</li>\n<li><p><code>insuranceContactsCC</code> (array): An array that contains insurance cc contacts ids</p>\n</li>\n<li><p><code>certificateHolders</code> (array): An array that contains certificate holders ids</p>\n</li>\n<li><p><code>providingDocuments</code> (boolean): flag that points out if documents should be attached to the case, document can be attached after case is created though.</p>\n</li>\n<li><p><code>dealClosingAt</code> (date): dealClosingAt date</p>\n</li>\n<li><p><code>riskReviewDeadlineAt</code> (date): riskReviewDeadlineAt date</p>\n</li>\n<li><p><code>complianceReview</code> (string): now/future this is reserved only for case type = renewal</p>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Edit Case Name Test 2024-12-04T09:40:58.693Z\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the API will return a status code indicating the success of the operation. The expected response format is typically a confirmation message or the updated case object, depending on the implementation.</p>\n<p>Make sure to replace <code>6750239bbc0b293e7c24e8db</code> with the actual case ID you wish to update and <code>Edit Case Name Test 2024-12-04T09:40:58.693Z</code> with the new name for the case.</p>\n","urlObject":{"path":["rest","cases","6750239bbc0b293e7c24e8db"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"b9b99992-5d02-4c8f-a872-4836d002d02b","name":"Case id - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Edit Case Name Test 2024-12-04T09:40:58.693Z\"\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/6750239bbc0b293e7c24e8db"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:45:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"991"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685306299c8ebe5a6504e3d7\",\n        \"externalId\": \"758188486-700472372\",\n        \"name\": \"Edit Case Name Test 2025-06-18T18:45:39.905Z\",\n        \"tenor\": 255,\n        \"type\": \"new\",\n        \"status\": \"OPEN\",\n        \"isEscrow\": false,\n        \"program\": \"677cfe461840abee910c6af4\",\n        \"documents\": [\n            \"6853064e9c8ebe5a6504e6b1\"\n        ],\n        \"insured\": [\n            \"68527909891ec5623415b040\"\n        ],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aee\"\n        ],\n        \"dealClosingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"riskReviewDeadlineAt\": \"2025-12-15T19:32:08.911Z\",\n        \"expectedMaturingAt\": \"2025-12-15T19:32:08.911Z\",\n        \"complianceReview\": NOW,\n        \"createdAt\": \"2025-06-18T18:32:09.408Z\",\n        \"updatedAt\": \"2025-06-18T18:45:40.070Z\",\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"13fa52f2-3f20-49bf-ba45-f76eb026e7d5"},{"name":"Add User to the case ID - New Case Type Assignment","event":[{"listen":"test","script":{"id":"75343c6e-2af3-4056-870d-7874b1d9ce1d","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","","","pm.test(\"Response time is less than 1100ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(1100);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"20e1b152-415e-4e95-8014-cfaea4b4d40f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"lenderUser\": \"UserID\"\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/CaseID","description":"<h2 id=\"patch-restcasescaseid\">PATCH /rest/cases/CaseID</h2>\n<p>This endpoint allows you to update the details of a specific case identified by <code>CaseID</code>. The primary purpose of this request is to modify the <code>lenderUser</code> associated with the case.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request must be sent with a JSON payload in the following format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"lenderUser\": \"UserID\"\n}\n\n</code></pre>\n<ul>\n<li><strong>lenderUser</strong> (string): The ID of the user who is the lender for the case. This field is required to update the lender information.</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successful execution of the request, the response will contain a JSON object with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"\",\n    \"externalId\": \"\",\n    \"name\": \"\",\n    \"tenor\": 0,\n    \"type\": \"\",\n    \"status\": \"\",\n    \"isEscrow\": true,\n    \"program\": \"\",\n    \"documents\": [\"\"],\n    \"insureds\": [\"\"],\n    \"insuranceContacts\": [\"\"],\n    \"insuranceContactsCC\": [],\n    \"certificateHolders\": [\"\"],\n    \"expectedMaturingAt\": \"\",\n    \"complianceReview\": \"\",\n    \"createdAt\": \"\",\n    \"updatedAt\": \"\",\n    \"lenderUser\": {\n      \"id\": \"UserID\",\n      \"fullName\": \"Name\",\n      \"role\": \"Role\",\n      \"serviceTypes\": [\"new/renewal\"]\n    },\n    \"assignedTo\": null,\n    \"createdBy\": \"\",\n    \"updatedBy\": \"\",\n    \"metadata\": {}\n  }\n}\n\n</code></pre>\n<h4 id=\"response-fields\">Response Fields</h4>\n<ul>\n<li><p><strong>data</strong>: Contains the updated information of the case.</p>\n<ul>\n<li><p><strong>id</strong>: The unique identifier for the case.</p>\n</li>\n<li><p><strong>externalId</strong>: An external identifier for the case.</p>\n</li>\n<li><p><strong>name</strong>: The name of the case.</p>\n</li>\n<li><p><strong>tenor</strong>: The duration of the case in months.</p>\n</li>\n<li><p><strong>type</strong>: The type of the case.</p>\n</li>\n<li><p><strong>status</strong>: The current status of the case.</p>\n</li>\n<li><p><strong>isEscrow</strong>: Indicates if the case is in escrow.</p>\n</li>\n<li><p><strong>program</strong>: The program associated with the case.</p>\n</li>\n<li><p><strong>documents</strong>: An array of documents related to the case.</p>\n</li>\n<li><p><strong>insureds</strong>: An array of insured entities.</p>\n</li>\n<li><p><strong>insuranceContacts</strong>: An array of insurance contact details.</p>\n</li>\n<li><p><strong>insuranceContactsCC</strong>: An array for CC'd insurance contacts.</p>\n</li>\n<li><p><strong>certificateHolders</strong>: An array of certificate holders.</p>\n</li>\n<li><p><strong>expectedMaturingAt</strong>: The expected maturity date of the case.</p>\n</li>\n<li><p><strong>complianceReview</strong>: Compliance review details.</p>\n</li>\n<li><p><strong>createdAt</strong>: Timestamp when the case was created.</p>\n</li>\n<li><p><strong>updatedAt</strong>: Timestamp when the case was last updated.</p>\n</li>\n<li><p><strong>lenderUser</strong>: An object containing details of the lender user.</p>\n<ul>\n<li><p><strong>id</strong>: The ID of the lender user.</p>\n</li>\n<li><p><strong>fullName</strong>: The full name of the lender user.</p>\n</li>\n<li><p><strong>role</strong>: The role of the lender user.</p>\n</li>\n<li><p><strong>serviceTypes</strong>: An array of service types associated with the lender user.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>assignedTo</strong>: Information on who the case is assigned to.</p>\n</li>\n<li><p><strong>createdBy</strong>: The ID of the user who created the case.</p>\n</li>\n<li><p><strong>updatedBy</strong>: The ID of the user who last updated the case.</p>\n</li>\n<li><p><strong>metadata</strong>: Additional metadata related to the case.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>This endpoint is essential for maintaining the accuracy of case assignments and ensuring that the correct lender user is associated with each case.</p>\n","urlObject":{"path":["rest","cases","CaseID"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"30e0657b-406f-4ef7-b416-7376eb75b5c3","name":"User Edit Response","originalRequest":{"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"lenderUser\": \"683570cf426a1ffa963d07a6\"\n}  ","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/cases/{{firstOpenId}}"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Content-Security-Policy","value":"default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"200"},{"key":"x-ratelimit-remaining","value":"199"},{"key":"x-ratelimit-reset","value":"60"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"776"},{"key":"Date","value":"Thu, 09 Oct 2025 12:42:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=72"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"68b97c57e98c123f9c1199b4\",\n        \"externalId\": \"813741121-461674757\",\n        \"name\": \"RenewalFutureCaseName-573514861-683517960\",\n        \"tenor\": 99,\n        \"type\": \"renewal\",\n        \"status\": \"open\",\n        \"isEscrow\": true,\n        \"program\": \"67a4d1a02546e74339982e00\",\n        \"documents\": [\n            \"68b97c5ce98c123f9c119f22\"\n        ],\n        \"insureds\": [\n            \"68a5d619225c053a3932f426\"\n        ],\n        \"insuranceContacts\": [\n            \"68a481a95d9ef5f93f723354\"\n        ],\n        \"insuranceContactsCC\": [],\n        \"certificateHolders\": [\n            \"67a4d1a02546e74339982dfa\"\n        ],\n        \"expectedMaturingAt\": \"2025-10-04T11:47:34.946Z\",\n        \"complianceReview\": \"future\",\n        \"createdAt\": \"2025-09-04T11:47:35.413Z\",\n        \"updatedAt\": \"2025-10-09T12:42:09.013Z\",\n        \"lenderUser\": {\n            \"id\": \"683570cf426a1ffa963d07a6\",\n            \"fullName\": \"User Name\",\n            \"role\": \"lenderReviewer\",\n            \"serviceTypes\": [\"renewal\"]\n        },\n        \"assignedTo\": null,\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": \"Advocate\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"20e1b152-415e-4e95-8014-cfaea4b4d40f"},{"name":"Insurance Contact","event":[{"listen":"test","script":{"id":"5caffa63-2510-4889-a4f2-0004afeb5d6f","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"5583f962-4cbe-4a49-82b2-a1f69f545371","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts?limit=44","description":"<h3 id=\"api-endpoint-retrieve-insurance-contacts\">API Endpoint: Retrieve Insurance Contacts</h3>\n<p><strong>Method:</strong> GET<br /><strong>URL:</strong> <code>https://api-v2-test.tryadvocate.com/rest/insurance-contacts?limit=44</code></p>\n<h4 id=\"description\">Description</h4>\n<p>This endpoint retrieves a list of insurance contacts from the server. The request allows you to specify a limit on the number of contacts returned, which in this case is set to 44.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><strong>limit</strong> (query parameter): Specifies the maximum number of insurance contacts to return. This is an integer value, and it helps in paginating the results.</p>\n</li>\n<li><p>Email filter https://api-v2-test.tryadvocate.com/rest/insurance-contacts?email[eq]=<a href=\"mailto:postmanic@tryadvocate.com\">postmanic@tryadvocate.com</a></p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will contain a JSON object that includes an array of insurance contacts. Each contact in the array typically includes details such as:</p>\n<ul>\n<li><p><strong>id</strong>: Unique identifier for the insurance contact.</p>\n</li>\n<li><p><strong>name</strong>: Name of the insurance contact.</p>\n</li>\n<li><p><strong>phone</strong>: Contact number.</p>\n</li>\n<li><p><strong>email</strong>: Email address of the contact.</p>\n</li>\n<li><p><strong>address</strong>: Physical address of the contact.</p>\n</li>\n</ul>\n<p>The exact structure of the response may vary based on the implementation, but it will generally follow this format to provide a comprehensive view of the insurance contacts retrieved.</p>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"contacts\": [\n    {\n      \"id\": \"1\",\n      \"name\": \"John Doe\",\n      \"phone\": \"123-456-7890\",\n      \"email\": \"john.doe@example.com\",\n      \"address\": \"123 Main St, Anytown, USA\"\n    },\n    ...\n  ],\n  \"total\": 100\n}\n\n</code></pre>\n<p>This example showcases a list of contacts along with a total count of available contacts.</p>\n","urlObject":{"path":["rest","insurance-contacts"],"host":["https://api-v2-test.tryadvocate.com"],"query":[{"key":"limit","value":"44"}],"variable":[]}},"response":[{"id":"9b0bae44-0d9b-426b-81b3-eb220cf4ebbd","name":"Insurance Contact - Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts?limit=44","host":["https://api-v2-test.tryadvocate.com"],"path":["rest","insurance-contacts"],"query":[{"key":"limit","value":"44"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:45:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"13415"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 135,\n        \"limit\": 44,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"6853076b9c8ebe5a6504edf3\",\n            \"name\": \"BrokerName744612516-399375739\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+744612516-399375739@tryadvocate.com\",\n            \"createdAt\": \"2025-06-18T18:37:31.513Z\",\n            \"updatedAt\": \"2025-06-18T18:37:31.513Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"Meta String One\",\n                \"Two-MetaDataLongString\": \"Meta String  Two\",\n                \"Three-MetaDataString\": \"Meta String Three\",\n                \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n                \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n            }\n        },\n        {\n            \"id\": \"685304529c8ebe5a6504e27d\",\n            \"name\": \"BrokerName806070415-396937629-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+806070415-396937629@tryadvocate.com\",\n            \"createdAt\": \"2025-06-18T18:24:18.824Z\",\n            \"updatedAt\": \"2025-06-18T18:24:18.824Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"685304419c8ebe5a6504e27a\",\n            \"name\": \"BrokerName876444348-188666382-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+876444348-188666382@tryadvocate.com\",\n            \"createdAt\": \"2025-06-18T18:24:01.694Z\",\n            \"updatedAt\": \"2025-06-18T18:24:01.694Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684ad46bd6a91c15ef29584c\",\n            \"name\": \"BrokerName874463342-696920271-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+874463342-696920271@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T13:21:47.231Z\",\n            \"updatedAt\": \"2025-06-12T13:21:47.231Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab42d6a91c15ef16f3e0\",\n            \"name\": \"BorrowerName514725748-911108518\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+514725748-911108518@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T10:26:10.749Z\",\n            \"updatedAt\": \"2025-06-12T10:26:10.749Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab42d6a91c15ef16f3dd\",\n            \"name\": \"OtherName224282592-444295483\",\n            \"type\": \"other\",\n            \"email\": \"othername+224282592-444295483@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T10:26:10.495Z\",\n            \"updatedAt\": \"2025-06-12T10:26:10.495Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab42d6a91c15ef16f3da\",\n            \"name\": \"BrokerName938600658-113580248\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+938600658-113580248@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T10:26:10.230Z\",\n            \"updatedAt\": \"2025-06-12T10:26:10.230Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab35d6a91c15ef16ea4b\",\n            \"name\": \"BrokerName870136576-923130020\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+870136576-923130020@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T10:25:57.930Z\",\n            \"updatedAt\": \"2025-06-12T10:25:57.930Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684aab35d6a91c15ef16ea48\",\n            \"name\": \"BrokerName459935334-507803792\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+459935334-507803792@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T10:25:57.670Z\",\n            \"updatedAt\": \"2025-06-12T10:25:57.670Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684aab2ad6a91c15ef16e2d1\",\n            \"name\": \"BrokerName809627426-481735033-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+809627426-481735033@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T10:25:46.690Z\",\n            \"updatedAt\": \"2025-06-12T10:25:46.690Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42f3084a00665f6b91f7\",\n            \"name\": \"BorrowerName299132817-987300596\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+299132817-987300596@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T03:01:07.702Z\",\n            \"updatedAt\": \"2025-06-12T03:01:07.702Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42f3084a00665f6b91f4\",\n            \"name\": \"OtherName781629481-548274177\",\n            \"type\": \"other\",\n            \"email\": \"othername+781629481-548274177@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T03:01:07.576Z\",\n            \"updatedAt\": \"2025-06-12T03:01:07.576Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42f3084a00665f6b91f1\",\n            \"name\": \"BrokerName336686461-127629482\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+336686461-127629482@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T03:01:07.354Z\",\n            \"updatedAt\": \"2025-06-12T03:01:07.354Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42ec084a00665f6b885a\",\n            \"name\": \"BrokerName288750471-784343543\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+288750471-784343543@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T03:01:00.393Z\",\n            \"updatedAt\": \"2025-06-12T03:01:00.393Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a42ec084a00665f6b8857\",\n            \"name\": \"BrokerName676033832-715085593\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+676033832-715085593@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T03:01:00.223Z\",\n            \"updatedAt\": \"2025-06-12T03:01:00.223Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a42dc084a00665f6b6afc\",\n            \"name\": \"BrokerName457014191-720956658-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+457014191-720956658@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T03:00:44.696Z\",\n            \"updatedAt\": \"2025-06-12T03:00:44.696Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a6c084a00665f5a6fd8\",\n            \"name\": \"BorrowerName993688875-814316761\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+993688875-814316761@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T02:24:44.703Z\",\n            \"updatedAt\": \"2025-06-12T02:24:44.703Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a6c084a00665f5a6fd5\",\n            \"name\": \"OtherName779541669-743536541\",\n            \"type\": \"other\",\n            \"email\": \"othername+779541669-743536541@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T02:24:44.450Z\",\n            \"updatedAt\": \"2025-06-12T02:24:44.450Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a6c084a00665f5a6fd2\",\n            \"name\": \"BrokerName915021653-311744322\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+915021653-311744322@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T02:24:44.191Z\",\n            \"updatedAt\": \"2025-06-12T02:24:44.191Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a60084a00665f5a6643\",\n            \"name\": \"BrokerName392462153-914934244\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+392462153-914934244@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T02:24:32.704Z\",\n            \"updatedAt\": \"2025-06-12T02:24:32.704Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684a3a60084a00665f5a6640\",\n            \"name\": \"BrokerName717599868-957943466\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+717599868-957943466@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T02:24:32.433Z\",\n            \"updatedAt\": \"2025-06-12T02:24:32.433Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684a3a47084a00665f5a3747\",\n            \"name\": \"BrokerName160609275-873363602-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+160609275-873363602@tryadvocate.com\",\n            \"createdAt\": \"2025-06-12T02:24:07.094Z\",\n            \"updatedAt\": \"2025-06-12T02:24:07.094Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684999d5084a00665f59e3af\",\n            \"name\": \"BorrowerName582151725-355699841\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+582151725-355699841@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:59:33.938Z\",\n            \"updatedAt\": \"2025-06-11T14:59:33.938Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684999d5084a00665f59e3ac\",\n            \"name\": \"OtherName905821873-879591632\",\n            \"type\": \"other\",\n            \"email\": \"othername+905821873-879591632@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:59:33.769Z\",\n            \"updatedAt\": \"2025-06-11T14:59:33.769Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684999d5084a00665f59e3a9\",\n            \"name\": \"BrokerName250326103-291915628\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+250326103-291915628@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:59:33.594Z\",\n            \"updatedAt\": \"2025-06-11T14:59:33.594Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684999ce084a00665f59da1a\",\n            \"name\": \"BrokerName791556588-697880241\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+791556588-697880241@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:59:26.208Z\",\n            \"updatedAt\": \"2025-06-11T14:59:26.208Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"684999ce084a00665f59da17\",\n            \"name\": \"BrokerName891958153-814947313\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+891958153-814947313@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:59:26.053Z\",\n            \"updatedAt\": \"2025-06-11T14:59:26.053Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"684999c5084a00665f59d2a0\",\n            \"name\": \"BrokerName300286944-283325452-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+300286944-283325452@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:59:17.757Z\",\n            \"updatedAt\": \"2025-06-11T14:59:17.757Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499846084a00665f5978ae\",\n            \"name\": \"BorrowerName852079990-144350950\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+852079990-144350950@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:52:54.184Z\",\n            \"updatedAt\": \"2025-06-11T14:52:54.184Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499845084a00665f5978ab\",\n            \"name\": \"OtherName485362205-579110641\",\n            \"type\": \"other\",\n            \"email\": \"othername+485362205-579110641@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:52:53.996Z\",\n            \"updatedAt\": \"2025-06-11T14:52:53.996Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499845084a00665f5978a8\",\n            \"name\": \"BrokerName611484992-363583756\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+611484992-363583756@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:52:53.826Z\",\n            \"updatedAt\": \"2025-06-11T14:52:53.826Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6849983e084a00665f596f19\",\n            \"name\": \"BrokerName441862365-890672804\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+441862365-890672804@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:52:46.224Z\",\n            \"updatedAt\": \"2025-06-11T14:52:46.224Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6849983e084a00665f596f16\",\n            \"name\": \"BrokerName874617586-755488020\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+874617586-755488020@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:52:46.045Z\",\n            \"updatedAt\": \"2025-06-11T14:52:46.045Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"68499836084a00665f59679f\",\n            \"name\": \"BrokerName390818071-990697924-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+390818071-990697924@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:52:38.282Z\",\n            \"updatedAt\": \"2025-06-11T14:52:38.282Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499584084a00665f4c8538\",\n            \"name\": \"BorrowerName177418581-620086095\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+177418581-620086095@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:41:08.957Z\",\n            \"updatedAt\": \"2025-06-11T14:41:08.957Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499584084a00665f4c83c1\",\n            \"name\": \"OtherName340354350-907998512\",\n            \"type\": \"other\",\n            \"email\": \"othername+340354350-907998512@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:41:08.673Z\",\n            \"updatedAt\": \"2025-06-11T14:41:08.673Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68499583084a00665f4c81d6\",\n            \"name\": \"BrokerName288998006-388521082\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+288998006-388521082@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:41:07.991Z\",\n            \"updatedAt\": \"2025-06-11T14:41:07.991Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6849956c084a00665f4c0cd7\",\n            \"name\": \"BrokerName875124291-142934126\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+875124291-142934126@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:40:44.322Z\",\n            \"updatedAt\": \"2025-06-11T14:40:44.322Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"6849956b084a00665f4c07b6\",\n            \"name\": \"BrokerName331603620-123381622\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+331603620-123381622@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:40:43.756Z\",\n            \"updatedAt\": \"2025-06-11T14:40:43.756Z\",\n            \"metadata\": {\n                \"One-MetaDataEmptyString\": \"\",\n                \"Two-MetaDataLongString\": \"This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string - This is a very long string\",\n                \"Three-MetaDataString\": \"MetaDataStringTest\",\n                \"Four-MetaDataNumbersOnly\": \"55555\",\n                \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n            }\n        },\n        {\n            \"id\": \"6849954f084a00665f4b716a\",\n            \"name\": \"BrokerName329256605-437828719-Policy\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamepolicy+329256605-437828719@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:40:15.395Z\",\n            \"updatedAt\": \"2025-06-11T14:40:15.395Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498e9fa0b0d30e2c68c1e9\",\n            \"name\": \"BorrowerName424848460-278757578\",\n            \"type\": \"borrower\",\n            \"email\": \"borrowername+424848460-278757578@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:11:43.931Z\",\n            \"updatedAt\": \"2025-06-11T14:11:43.931Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498e9fa0b0d30e2c68c1e6\",\n            \"name\": \"OtherName129295642-986939491\",\n            \"type\": \"other\",\n            \"email\": \"othername+129295642-986939491@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:11:43.679Z\",\n            \"updatedAt\": \"2025-06-11T14:11:43.679Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498e9fa0b0d30e2c68c1e3\",\n            \"name\": \"BrokerName755169097-825235863\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+755169097-825235863@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:11:43.423Z\",\n            \"updatedAt\": \"2025-06-11T14:11:43.423Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"68498e94a0b0d30e2c68b85d\",\n            \"name\": \"BrokerName110362255-184773744\",\n            \"type\": \"broker\",\n            \"email\": \"brokernamee+110362255-184773744@tryadvocate.com\",\n            \"createdAt\": \"2025-06-11T14:11:32.341Z\",\n            \"updatedAt\": \"2025-06-11T14:11:32.341Z\",\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"5583f962-4cbe-4a49-82b2-a1f69f545371"},{"name":"Insurance Contact","event":[{"listen":"test","script":{"id":"a9da7050-a68f-4162-93be-72019ada0ec4","exec":["const jsonData = pm.response.json().data;","","pm.test(\"Response status code is 201\", function () {","  pm.expect(pm.response.code).to.equal(201);","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"b3bde99c-4ec8-4f96-8d00-8d18b6f7c190","exec":["function generate9DigitRandomNumber() {","    const firstPart = Math.floor(100000000 + Math.random() * 900000000);","    const secondPart = Math.floor(100000000 + Math.random() * 900000000);","    const randomNumber = `${firstPart}-${secondPart}`","    pm.collectionVariables.set('randomBrokerICNumber', randomNumber)","    return randomNumber.toString();","}","","generate9DigitRandomNumber()"],"type":"text/javascript","packages":{}}}],"id":"c3d3ae57-7b5c-4e32-9cb2-9b1ed8f32ff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamee+853947811-667789131@tryadvocate.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts","description":"<h2 id=\"add-insurance-contact\">Add Insurance Contact</h2>\n<p>This endpoint allows you to add a new insurance contact to the system. It is specifically designed for creating contacts of type \"broker\".</p>\n<h3 id=\"request\">Request</h3>\n<p><strong>Method:</strong> POST<br /><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/insurance-contacts</code></p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the broker. This is a required field.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of contact. For this endpoint, the value should be \"broker\", \"borrower\", or \"other\"</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the broker. This is a required field.</p>\n</li>\n</ul>\n<p>Example of a request body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"BrokerName\",\n  \"type\": \"broker\",\n  \"email\": \"brokername@example.com\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the server will respond with a confirmation of the added insurance contact. The structure of the response will typically include:</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier for the newly created insurance contact.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the broker as provided in the request.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of contact, which should reflect the value sent in the request.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the broker as provided in the request.</p>\n</li>\n<li><p><strong>status</strong> (string): A message indicating the success or failure of the operation.</p>\n</li>\n</ul>\n<p>Example of a successful response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"unique_contact_id\",\n  \"name\": \"BrokerName\",\n  \"type\": \"broker\",\n  \"email\": \"brokername@example.com\",\n  \"status\": \"Contact successfully added.\"\n}\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the email address provided is valid and follows the standard email format.</p>\n</li>\n<li><p>The <code>type</code> parameter is fixed to \"broker\" for this endpoint and should not be altered.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","insurance-contacts"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"2bfea8c3-aa36-454c-9239-e0584bf9d649","name":"Insurance Contact - Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{        \n    \"name\": \"BrokerName853947811-667789131\",\n    \"type\": \"broker\",\n    \"email\": \"brokernamee+853947811-667789131@tryadvocate.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:46:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"247"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6853096b9c8ebe5a6504f70c\",\n        \"name\": \"BrokerName992145857-365018363\",\n        \"type\": \"broker\",\n        \"email\": \"brokernamee+992145857-365018363@tryadvocate.com\",\n        \"createdAt\": \"2025-06-18T18:46:03.622Z\",\n        \"updatedAt\": \"2025-06-18T18:46:03.622Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"c3d3ae57-7b5c-4e32-9cb2-9b1ed8f32ff8"},{"name":"Insurance Contact id","event":[{"listen":"test","script":{"id":"3136633a-dfdd-441d-a68e-692e256ba299","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"91917261-e511-429a-9039-eca86db7d4e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts/","description":"<h2 id=\"get-insurance-contact\">Get Insurance Contact</h2>\n<p>This endpoint retrieves the details of a specific insurance contact using their unique identifier.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<p><code>GET</code></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>https://api-v2-test.tryadvocate.com/rest/insurance-contacts/</code></p>\n<h3 id=\"parameters\">Parameters</h3>\n<ul>\n<li><strong>PostmanICId</strong>: This is a path parameter that represents the unique identifier of the insurance contact you wish to retrieve. It must be provided in the URL.</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The response will be in JSON format and will contain the details of the insurance contact associated with the provided <code>PostmanICId</code>. The structure of the response will include various attributes related to the insurance contact, such as their name, contact information, and other relevant details.</p>\n","urlObject":{"path":["rest","insurance-contacts",""],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"06c821c3-7b59-49e6-839e-3349b4e4647b","name":"Insurance Contact id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:48:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"252"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"684982b2a0b0d30e2c570814\",\n        \"name\": \"BorrowerName172502581-899977198\",\n        \"type\": \"borrower\",\n        \"email\": \"borrowername+172502581-899977198@tryadvocate.com\",\n        \"createdAt\": \"2025-06-11T13:20:50.416Z\",\n        \"updatedAt\": \"2025-06-11T13:20:50.416Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"91917261-e511-429a-9039-eca86db7d4e3"},{"name":"Insurance Contact id","event":[{"listen":"test","script":{"id":"02407860-bfc6-4f56-9d5b-1fbc09fecbc6","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"b2d066d8-12e4-4f37-a9ef-8a6738887392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"name\": \"broker\",\n        \"type\": \"broker\",\n        \"email\": \"broker+6.5.2@tryadvocate.com\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"\",\n        \"Two-MetaDataLongString\": \"89hcf092875jdf92j5d493285hf2098375fhj29038723498752938475092837450987234098572309485723904857239048572903847590238475098892345789023749058730489570923847509823745908273409587203984702938475029384750923875098237509823475908237409587234905234058234705982734905822347590823745908273409857230498572039845kjsdf;lgkjdf;lkgjsd;lfkgj;sldkfjg;lsdkjfg;lksdjfl;kjgsl;dkfjg;sdlkfjg;lkdjfglkahshjkgfajkshdgfkjahsdgfkjhasdgfkjhasdgfkjhasgdfkjhagsdjkfhgaskjdhfgkasjdhfgajkshdgfkajsdhgfkajshdgfkjashdgfkjasdhgfajkshdgfkajshdgfjkahdfdghdfghdfghdfghdfghdfghdfghdfghdfghdfhdfghdfsdfjkahsgfajksdgfjkhgfsad7092384752345f\",\n        \"Three-MetaDataString\": \"Test\",\n        \"Four-MetaDataWrongType\": 4,\n        \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\",\n        \"Six-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts/65eecdbf322fdc969c64b990","description":"<h2 id=\"patch-restinsurance-contactsinsurancecontactid\">PATCH /rest/insurance-contacts/65eecdbf322fdc969c64b990</h2>\n<p>This endpoint updates the details of an insurance contact identified by <code>insuranceContactId</code>. The request allows you to modify various attributes of the insurance contact, including its name and associated metadata.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be a JSON object containing the following structure:</p>\n<ul>\n<li><p><strong>data</strong>: An object containing the details to be updated.</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the broker.</p>\n</li>\n<li><p><strong>type</strong> (string): Broker, Borrower, Other</p>\n</li>\n<li><p><strong>metadata</strong>: An object containing additional metadata fields.</p>\n<ul>\n<li><p><strong>One-MetaDataEmptyString</strong> (string): An optional field that can be left empty.</p>\n</li>\n<li><p><strong>Two-MetaDataLongString</strong> (string): A long string that may contain various characters.</p>\n</li>\n<li><p><strong>Three-MetaDataString</strong> (string): A standard string field.</p>\n</li>\n<li><p><strong>Four-MetaDataWrongType</strong> (integer): This field is expected to be a string but is provided as an integer, which may lead to validation errors.</p>\n</li>\n<li><p><strong>Five-MetaDataSpecialChars</strong> (string): A string that may include special characters.</p>\n</li>\n<li><p><strong>Six-MetaDataSpecialChars</strong> (string): Another string that may include special characters.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful update, the API will return a response indicating the status of the operation. The response typically includes:</p>\n<ul>\n<li><p>A confirmation message or status code indicating that the update was successful.</p>\n</li>\n<li><p>The updated details of the insurance contact, which may include the same fields provided in the request.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>insuranceContactId</code> is valid and corresponds to an existing insurance contact.</p>\n</li>\n<li><p>Validate the types of metadata fields before sending the request to avoid errors.</p>\n</li>\n<li><p>Special characters in metadata fields should be properly encoded if necessary.</p>\n</li>\n</ul>\n<p>This endpoint is useful for keeping insurance contact information up to date and ensuring that all relevant metadata is accurately recorded.</p>\n","urlObject":{"path":["rest","insurance-contacts","65eecdbf322fdc969c64b990"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"9514a86a-2cd4-4f18-b437-7882e950b0ea","name":"Insurance Contact id - Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n        \"name\": \"broker\",\n        \"type\": \"broker\",\n        \"email\": \"broker@broker.com\",\n        \"metadata\": {\n        \"One-MetaDataEmptyString\": \"\",\n        \"Two-MetaDataLongString\": \"89hcf092875jdf92j5d493285hf2098375fhj29038723498752938475092837450987234098572309485723904857239048572903847590238475098892345789023749058730489570923847509823745908273409587203984702938475029384750923875098237509823475908237409587234905234058234705982734905822347590823745908273409857230498572039845kjsdf;lgkjdf;lkgjsd;lfkgj;sldkfjg;lsdkjfg;lksdjfl;kjgsl;dkfjg;sdlkfjg;lkdjfglkahshjkgfajkshdgfkjahsdgfkjhasdgfkjhasdgfkjhasgdfkjhagsdjkfhgaskjdhfgkasjdhfgajkshdgfkajsdhgfkajshdgfkjashdgfkjasdhgfajkshdgfkajshdgfjkahdfdghdfghdfghdfghdfghdfghdfghdfghdfghdfhdfghdfsdfjkahsgfajksdgfjkhgfsad7092384752345f\",\n        \"Three-MetaDataString\": \"Test\",\n        \"Four-MetaDataWrongType\": 4,\n        \"Five-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\",\n        \"Six-MetaDataSpecialChars\": \"<>()@$*&)#(*$^#@)(%^@#)!(%&*^@#)&(*%^)(*#$@#{}$%>?}$\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/insurance-contacts/65eecdbf322fdc969c64b990"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:48:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"418"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"65eecdbf322fdc969c64b990\",\n        \"name\": \"broker\",\n        \"type\": \"other\",\n        \"email\": \"ashwinraa@gmail.com\",\n        \"createdAt\": \"2024-03-11T09:24:16.184Z\",\n        \"updatedAt\": \"2025-06-18T18:48:25.947Z\",\n        \"metadata\": {\n            \"One-MetaDataEmptyString\": \"Meta String One\",\n            \"Two-MetaDataLongString\": \"Meta String  Two\",\n            \"Three-MetaDataString\": \"Meta String Three\",\n            \"Four-MetaDataNumbersOnly\": \"Meta String Four\",\n            \"Five-MetaDataSpecialChars\": \"Meta String Five\"\n        }\n    }\n}"}],"_postman_id":"b2d066d8-12e4-4f37-a9ef-8a6738887392"},{"name":"Certificate Holders","event":[{"listen":"test","script":{"id":"58dea80d-3201-438f-a623-b5139cee5acc","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"5325391f-669f-4555-a461-b289cfdcb14a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/certificate-holders","description":"<h2 id=\"get-certificate-holders\">Get Certificate Holders</h2>\n<p>This endpoint retrieves a list of certificate holders from the system.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<p><code>GET</code></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>https://api-v2-test.tryadvocate.com/rest/certificate-holders</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>This endpoint does not require any request parameters.</p>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The response will be in JSON format and will include an array of certificate holders, each containing relevant details about the clauses. The structure of the response will provide necessary information for each mortgagee clause.</p>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li>?id[eq]=YourId</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"certificateHolders\": [\n    {\n      \"id\": \"string\",\n      \"description\": \"string\",\n      \"createdDate\": \"string\",\n      ...\n    }\n  ]\n}\n\n</code></pre>\n","urlObject":{"path":["rest","certificate-holders"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"379ccb0c-a691-48fc-a83e-276c99c9c142","name":"Certificate Holders  - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/certificate-holders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:49:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"802"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 3,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"677cfe461840abee910c6af1\",\n            \"title\": \"TA-Postman - Insurance Clause Securing the Mortgage Lender's Right to Receive Compensation for Loss or Damage to the Insured Property, Even if the Homeowner Fails to Comply with Policy Conditions\",\n            \"createdAt\": \"2025-01-07T10:13:26.381Z\",\n            \"updatedAt\": \"2025-01-07T10:13:26.381Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"677cfe461840abee910c6aee\",\n            \"title\": \"TA-Postman - Clause Ensuring Lender's Financial Interest in Property Insurance Payouts for Loss or Damage\",\n            \"createdAt\": \"2025-01-07T10:13:26.373Z\",\n            \"updatedAt\": \"2025-01-07T10:13:26.373Z\",\n            \"metadata\": {}\n        },\n        {\n            \"id\": \"677cfe461840abee910c6aeb\",\n            \"title\": \"TA-Postman - Mortgagee Protection Clause\",\n            \"createdAt\": \"2025-01-07T10:13:26.361Z\",\n            \"updatedAt\": \"2025-01-07T10:13:26.361Z\",\n            \"metadata\": {}\n        }\n    ]\n}"}],"_postman_id":"5325391f-669f-4555-a461-b289cfdcb14a"},{"name":"Certificate Holders","event":[{"listen":"test","script":{"id":"58dea80d-3201-438f-a623-b5139cee5acc","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8c5e1573-aacb-4f69-ac74-935d59d2f3fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"POST","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Your Certificate Holder Name\",\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/certificate-holders","description":"<h2 id=\"post-certificate-holders\">Post Certificate Holders</h2>\n<p>This endpoint retrieves a list of certificate holders from the system.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<p><code>POST</code></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>https://api-v2-test.tryadvocate.com/rest/certificate-holders</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>This endpoint require a body in which you need to provide certificate holder info like title and metaData</p>\n<p><strong>title</strong>: string<br /><strong>metaData</strong>: object</p>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The response will be in JSON format and will include an array of certificate holder, containing relevant details about the clause.</p>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"certificateHolders\": [\n    {\n      \"id\": \"string\",\n      \"description\": \"string\",\n      \"createdDate\": \"string\",\n      ...\n    }\n  ]\n}\n\n</code></pre>\n","urlObject":{"path":["rest","certificate-holders"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"53074cfb-ae21-41b8-8492-ba010010d75d","name":"Certificate Holders  - Response","originalRequest":{"method":"POST","header":[],"url":"https://api-v2.tryadvocate.com/rest/certificate-holders/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:49:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"802"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"68da86614e43a8dab8deaf04\",\n        \"title\": \"Certificate Holder Name + 125096429-786387756\",\n        \"createdAt\": \"2025-09-29T13:15:13.455Z\",\n        \"updatedAt\": \"2025-09-29T13:15:13.455Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"8c5e1573-aacb-4f69-ac74-935d59d2f3fd"},{"name":"Certificate Holders id","event":[{"listen":"test","script":{"id":"aace8cfb-83e0-4656-b39b-f2d56421b91a","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"34230c7b-e20c-4123-9691-dd022d4f1b64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/certificate-holders/","description":"<h2 id=\"retrieve-mortgagee-clause\">Retrieve Mortgagee Clause</h2>\n<p>This endpoint allows you to retrieve details of a specific mortgagee clause using its unique identifier.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api-v2-test.tryadvocate.com/rest/certificate-holders/</code></p>\n</li>\n<li><p><strong>Path Parameter</strong>:</p>\n<ul>\n<li><code>CertificateHolderOne</code> (string): The unique identifier for the mortgagee clause you wish to retrieve.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the API will return a response containing the details of the specified mortgagee clause. The response will typically include information such as:</p>\n<ul>\n<li><p>The mortgagee clause details (e.g., name, description, terms).</p>\n</li>\n<li><p>Status of the request (e.g., success or error).</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>CertificateHolderOne</code> parameter is valid and exists in the system to avoid errors.</p>\n</li>\n<li><p>This endpoint is read-only; no modifications to the mortgagee clause can be made through this request.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","certificate-holders",""],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"bd48f1b7-5dae-43a1-beac-f2aeaeb662f0","name":"Certificate Holders id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/certificate-holders/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:49:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"250"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"677cfe461840abee910c6aee\",\n        \"title\": \"TA-Postman - Clause Ensuring Lender's Financial Interest in Property Insurance Payouts for Loss or Damage\",\n        \"createdAt\": \"2025-01-07T10:13:26.373Z\",\n        \"updatedAt\": \"2025-01-07T10:13:26.373Z\",\n        \"metadata\": {}\n    }\n}"}],"_postman_id":"34230c7b-e20c-4123-9691-dd022d4f1b64"},{"name":"Product Type","event":[{"listen":"test","script":{"id":"dd7432cc-81fc-4a5f-ad88-e97a66da5dc1","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"e0689579-da98-4ec5-87f9-87102bcdb41b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/product-types","description":"<h2 id=\"get-product-types\">Get Product Types</h2>\n<p>This endpoint retrieves a list of product types available in the system. It is a simple HTTP GET request that does not require any request body.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://api-v2-test.tryadvocate.com/rest/product-types</code></p>\n</li>\n</ul>\n<h4 id=\"query-parameters\">Query Parameters</h4>\n<ul>\n<li><p><strong>limit</strong> (integer, optional): Specifies the maximum number of product types to return. In this case, it is set to <code>10</code>, meaning the response will include up to 10 product types.</p>\n</li>\n<li><p><strong>coverageType</strong> filtering: https://api-v2-test.tryadvocate.com/rest/product-types?coverageType[eq]=property</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>productTypes</strong>: An array of product type objects, each containing:</p>\n<ul>\n<li><p><strong>id</strong>: Unique identifier for the product type.</p>\n</li>\n<li><p><strong>name</strong>: The name of the product type.</p>\n</li>\n<li><p><strong>description</strong>: A brief description of the product type.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"productTypes\": [\n    {\n      \"id\": \"1\",\n      \"name\": \"Electronics\",\n      \"description\": \"Devices and gadgets.\"\n    },\n    {\n      \"id\": \"2\",\n      \"name\": \"Furniture\",\n      \"description\": \"Home and office furniture.\"\n    }\n  ]\n}\n\n</code></pre>\n<p>This endpoint is useful for applications that need to display or utilize various product types in their functionality.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}},"urlObject":{"path":["rest","product-types"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"a6a5a01a-dfa3-406a-a306-862a3b68430e","name":"Product Type - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/product-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:49:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2046"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 83,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"679ce7e832f451b77e3bb814\",\n            \"key\": \"test1SzUr9ZQk6X\",\n            \"name\": \"test1\",\n            \"coverageType\": [\n                \"property\",\n                \"liability\"\n            ]\n        },\n        {\n            \"id\": \"679cdc9532f451b77e3b1652\",\n            \"key\": \"hoT3L8TwHj3X\",\n            \"name\": \"ho\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        },\n        {\n            \"id\": \"679cdbd832f451b77e3b14f5\",\n            \"key\": \"hiHlXyFwdRiN\",\n            \"name\": \"hi\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        },\n        {\n            \"id\": \"679cd99032f451b77e3b13cf\",\n            \"key\": \"testLiabilityComO9DUDjqflP\",\n            \"name\": \"test liability com\",\n            \"coverageType\": [\n                \"liability\"\n            ]\n        },\n        {\n            \"id\": \"679cd63632f451b77e3ada56\",\n            \"key\": \"testProductTypeEFqH8LoMeH\",\n            \"name\": \"test product type\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        },\n        {\n            \"id\": \"674ed91cfbff3584b128a88e\",\n            \"key\": \"testCoverageTypeIhKf8RyN6A\",\n            \"name\": \"TEST COVERAGE TYPE\",\n            \"coverageType\": [\n                \"property\",\n                \"liability\"\n            ]\n        },\n        {\n            \"id\": \"65ef6e6dddc8e579d5528719\",\n            \"key\": \"floodPolicyGoE92TCd8C\",\n            \"name\": \"Flood Policy\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        },\n        {\n            \"id\": \"6597355200ac680016edf955\",\n            \"key\": \"ownerContractorsProtectiveLiabilityDkyjq9Gf03\",\n            \"name\": \"Owner and Contractor's Protective Liability\",\n            \"coverageType\": [\n                \"liability\"\n            ]\n        },\n        {\n            \"id\": \"650cc530c03744001253bffb\",\n            \"key\": \"namedStormPolicyXe8HhhdhJb\",\n            \"name\": \"Named Storm Policy\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        },\n        {\n            \"id\": \"650cc526c03744001253bfd4\",\n            \"key\": \"windHailPolicyPde9OgOvFi\",\n            \"name\": \"Wind/Hail Policy\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        },\n        {\n            \"id\": \"64625208677b300012b41250\",\n            \"key\": \"workersCompensationPolicyKtZv9E5SHq\",\n            \"name\": \"Worker's Compensation Policy\",\n            \"coverageType\": [\n                \"liability\"\n            ]\n        },\n        {\n            \"id\": \"64403746cbf18b00119011eb\",\n            \"key\": \"directorOfficersLiabilityPolicyHKmX2HpnPj\",\n            \"name\": \"Director & Officer's Liability Policy\",\n            \"coverageType\": [\n                \"liability\"\n            ]\n        },\n        {\n            \"id\": \"642f02151a7186001130f53d\",\n            \"key\": \"terrorismPackagePolicyQSc8Wg1Rda\",\n            \"name\": \"Terrorism Package Policy\",\n            \"coverageType\": [\n                \"property\",\n                \"liability\"\n            ]\n        },\n        {\n            \"id\": \"642efb8b1a718600112fc6be\",\n            \"key\": \"localizedPerilAvalanchePolicy0EMkGbJ0J9\",\n            \"name\": \"Localized Peril: Avalanche Policy\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        },\n        {\n            \"id\": \"642efb411a718600112f8b62\",\n            \"key\": \"localizedPerilVolcanicEruptionPolicyMfwOYrwhC6\",\n            \"name\": \"Localized Peril: Volcanic Eruption Policy\",\n            \"coverageType\": [\n                \"property\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"e0689579-da98-4ec5-87f9-87102bcdb41b"},{"name":"Programs","event":[{"listen":"test","script":{"id":"5c2104f2-e111-4e9f-b034-77f3d86a17c3","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"4a795311-ec24-4a41-88c3-90d7a5b79783","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/programs","description":"<h3 id=\"api-endpoint-get-hostrestprograms\">API Endpoint: <code>GET https://api-v2-test.tryadvocate.com/rest/programs</code></h3>\n<h4 id=\"purpose\">Purpose</h4>\n<p>This endpoint retrieves a list of programs available in the system. It provides users with information regarding all the programs that can be accessed or managed through the API.</p>\n<h4 id=\"request-format\">Request Format</h4>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>Request Body</strong>: This endpoint does not require a request body. All necessary parameters should be passed as query parameters if applicable.</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will be in JSON format and will typically include the following fields:</p>\n<ul>\n<li><p><code>programs</code>: An array containing details of each program. Each program object may include:</p>\n<ul>\n<li><p><code>id</code>: Unique identifier for the program.</p>\n</li>\n<li><p><code>name</code>: The name of the program.</p>\n</li>\n<li><p><code>description</code>: A brief description of what the program entails.</p>\n</li>\n<li><p><code>status</code>: The current status of the program (e.g., active, inactive).</p>\n</li>\n<li><p><code>created_at</code>: Timestamp of when the program was created.</p>\n</li>\n<li><p><code>updated_at</code>: Timestamp of the last update made to the program.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li><p>?isLatestVersion=true/false</p>\n</li>\n<li><p>?id[eq]=YourId</p>\n</li>\n</ul>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"programs\": [\n    {\n      \"id\": \"123\",\n      \"name\": \"Program A\",\n      \"description\": \"Description of Program A\",\n      \"status\": \"active\",\n      \"created_at\": \"2023-01-01T00:00:00Z\",\n      \"updated_at\": \"2023-01-10T00:00:00Z\"\n    },\n    {\n      \"id\": \"124\",\n      \"name\": \"Program B\",\n      \"description\": \"Description of Program B\",\n      \"status\": \"inactive\",\n      \"created_at\": \"2023-02-01T00:00:00Z\",\n      \"updated_at\": \"2023-02-10T00:00:00Z\"\n    }\n  ]\n}\n\n</code></pre>\n<p>This response structure allows users to easily identify and access the relevant information about each program.</p>\n","urlObject":{"path":["rest","programs"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"4ef14847-7817-4723-ae02-6f663e0d73c3","name":"Programs - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/programs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:49:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2585"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 5,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"684fd26abe44a129de186c28\",\n            \"version\": 2,\n            \"name\": \"TA-Postman Program | Pre-Close | Post Close | Postman Assets\",\n            \"description\": \"TA-Postman Program | Pre-Close | Post Close | Postman Assets\",\n            \"types\": [\n                \"new\",\n                \"renewal\"\n            ],\n            \"assetTypes\": [\n                \"60db19f5687e130004f8885b\",\n                \"6718a5e41fc8ad19d03332b9\",\n                \"677cfe3d1840abee910c44db\",\n                \"677cfe401840abee910c4daa\",\n                \"677cfe421840abee910c5788\",\n                \"677cfe441840abee910c61ad\"\n            ],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aeb\",\n                \"677cfe461840abee910c6aee\",\n                \"677cfe461840abee910c6af1\"\n            ],\n            \"isLatestVersion\": true,\n            \"createdAt\": \"2025-06-16T08:14:34.930Z\",\n            \"updatedAt\": \"2025-06-17T07:36:45.490Z\"\n        },\n        {\n            \"id\": \"677cfe471840abee910c8405\",\n            \"version\": 1,\n            \"name\": \"TA-Postman Program | Pre-Close | Multi Family\",\n            \"description\": \"TA-Postman Program | Pre-Close | Multi Family\",\n            \"types\": [\n                \"new\"\n            ],\n            \"assetTypes\": [\n                \"677cfe421840abee910c5788\"\n            ],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aeb\",\n                \"677cfe461840abee910c6aee\",\n                \"677cfe461840abee910c6af1\"\n            ],\n            \"isLatestVersion\": false,\n            \"createdAt\": \"2025-01-07T10:13:27.851Z\",\n            \"updatedAt\": \"2025-01-07T10:13:27.881Z\"\n        },\n        {\n            \"id\": \"677cfe471840abee910c7fa0\",\n            \"version\": 1,\n            \"name\": \"TA-Postman Program | Post-Close | Multi Family\",\n            \"description\": \"TA-Postman Program | Post-Close | Multi Family\",\n            \"types\": [\n                \"renewal\",\n                \"new\"\n            ],\n            \"assetTypes\": [\n                \"677cfe421840abee910c5788\"\n            ],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aeb\",\n                \"677cfe461840abee910c6aee\",\n                \"677cfe461840abee910c6af1\"\n            ],\n            \"isLatestVersion\": true,\n            \"createdAt\": \"2025-01-07T10:13:27.669Z\",\n            \"updatedAt\": \"2025-06-09T08:27:21.619Z\"\n        },\n        {\n            \"id\": \"677cfe471840abee910c7b3b\",\n            \"version\": 1,\n            \"name\": \"TA-Postman Program | Pre-Close | Post Close | Multi Family\",\n            \"description\": \"TA-Postman Program | Pre-Close | Post Close | Multi Family\",\n            \"types\": [\n                \"new\",\n                \"renewal\"\n            ],\n            \"assetTypes\": [\n                \"677cfe421840abee910c5788\"\n            ],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aeb\",\n                \"677cfe461840abee910c6aee\",\n                \"677cfe461840abee910c6af1\"\n            ],\n            \"isLatestVersion\": true,\n            \"createdAt\": \"2025-01-07T10:13:27.511Z\",\n            \"updatedAt\": \"2025-06-09T08:27:41.062Z\"\n        },\n        {\n            \"id\": \"677cfe461840abee910c6af4\",\n            \"version\": 1,\n            \"name\": \"TA-Postman Program | Pre-Close | Post Close | Postman Assets\",\n            \"description\": \"TA-Postman Program | Pre-Close | Post Close | Postman Assets\",\n            \"types\": [\n                \"new\",\n                \"renewal\"\n            ],\n            \"assetTypes\": [\n                \"677cfe3d1840abee910c44db\",\n                \"677cfe401840abee910c4daa\",\n                \"677cfe421840abee910c5788\",\n                \"677cfe441840abee910c61ad\"\n            ],\n            \"certificateHolders\": [\n                \"677cfe461840abee910c6aeb\",\n                \"677cfe461840abee910c6aee\",\n                \"677cfe461840abee910c6af1\"\n            ],\n            \"isLatestVersion\": false,\n            \"createdAt\": \"2025-01-07T10:13:26.391Z\",\n            \"updatedAt\": \"2025-06-17T07:36:45.490Z\"\n        }\n    ]\n}"}],"_postman_id":"4a795311-ec24-4a41-88c3-90d7a5b79783"},{"name":"Programs id","event":[{"listen":"test","script":{"id":"741af8d8-7d4a-422b-9a15-48321d2a4f02","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"52959250-a00c-4dbe-83b9-f66820ec4381","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/programs/677cfe471840abee910c8405","description":"<h3 id=\"api-endpoint-retrieve-program-details\">API Endpoint: Retrieve Program Details</h3>\n<p><strong>Method:</strong> <code>GET</code><br /><strong>Endpoint:</strong> <code>https://api-v2-test.tryadvocate.com/rest/programs/677cfe471840abee910c8405</code></p>\n<p>This endpoint retrieves detailed information about a specific program identified by the <code>ProgramNewRenewalAssetsId</code>.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<ul>\n<li><strong>ProgramNewRenewalAssetsId</strong> (path parameter): The unique identifier for the program you wish to retrieve. This parameter is required.</li>\n</ul>\n<h4 id=\"expected-response\">Expected Response:</h4>\n<p>The response will be in JSON format and will contain detailed information about the specified program, including various attributes related to the program's configuration and status.</p>\n<p>Make sure to replace <code>https://api-v2-test.tryadvocate.com</code> with the actual host URL and <code>677cfe471840abee910c8405</code> with the specific program ID when making the request.</p>\n","urlObject":{"path":["rest","programs","677cfe471840abee910c8405"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"1f2a01ad-dd9b-4463-98d9-157ee99bfab9","name":"Programs id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/programs/677cfe471840abee910c8405"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:50:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"568"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"677cfe461840abee910c6af4\",\n        \"version\": 1,\n        \"name\": \"TA-Postman Program | Pre-Close | Post Close | Postman Assets\",\n        \"description\": \"TA-Postman Program | Pre-Close | Post Close | Postman Assets\",\n        \"types\": [\n            \"new\",\n            \"renewal\"\n        ],\n        \"assetTypes\": [\n            \"677cfe3d1840abee910c44db\",\n            \"677cfe401840abee910c4daa\",\n            \"677cfe421840abee910c5788\",\n            \"677cfe441840abee910c61ad\"\n        ],\n        \"certificateHolders\": [\n            \"677cfe461840abee910c6aeb\",\n            \"677cfe461840abee910c6aee\",\n            \"677cfe461840abee910c6af1\"\n        ],\n        \"isLatestVersion\": false,\n        \"createdAt\": \"2025-01-07T10:13:26.391Z\",\n        \"updatedAt\": \"2025-06-17T07:36:45.490Z\"\n    }\n}"}],"_postman_id":"52959250-a00c-4dbe-83b9-f66820ec4381"},{"name":"Program Edit","event":[{"listen":"test","script":{"id":"ee672cbb-7d50-4104-80e6-1d78e6054cfa","exec":["const certHolderId = pm.collectionVariables.get('firstCertificateHolderInARow')","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});","","","pm.test(\"Response time is less than 4000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Response contains correct data\", function () {","  const responseData = pm.response.json();","  console.log(responseData.data)","    pm.expect(responseData.data).to.have.property('id');","    pm.expect(responseData.data).to.have.property('name');","    pm.expect(responseData.data).to.have.property('version');","    pm.expect(responseData.data).to.have.property('description');","    pm.expect(responseData.data).to.have.property('caseTypes');","    pm.expect(responseData.data).to.have.property('certificateHolders');","    pm.expect(responseData.data).to.have.property('createdAt');","    pm.expect(responseData.data).to.have.property('updatedAt');","});","","pm.test(\"Response data id matches request id\", function () {","    pm.expect(pm.response.json().data.id).to.equal(\"67a4d1a12546e7433998478a\"); ","    pm.expect(pm.response.json().data.certificateHolders[0]).to.equal(certHolderId);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"dccba5fa-29aa-408c-94fd-86d44ec339aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"certificateHolders\": [\n        \"{{firstCertificateHolderInARow}}\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/programs/{{programId}}","description":"<h2 id=\"patch-restprogramsprogramid\">PATCH /rest/programs/{programId}</h2>\n<p>This endpoint allows you to update the details of a specific program identified by its unique <code>programId</code>. The request modifies the program's certificate holders.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>certificateHolders</strong> (Array of Strings): This parameter accepts an array of certificate holder identifiers that you wish to associate with the program. Each entry in the array should be a string representing a certificate holder's unique identifier.</li>\n</ul>\n<h3 id=\"request-body-example\">Request Body Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"certificateHolders\": [\"{{YourCertificateHolderID}}\"]\n}\n\n</code></pre>\n<h3 id=\"response-format\">Response Format</h3>\n<p>Upon a successful update, the API returns a JSON object with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"\",\n    \"version\": 0,\n    \"name\": \"\",\n    \"description\": \"\",\n    \"caseTypes\": [\"\"],\n    \"assetTypes\": [\"\"],\n    \"certificateHolders\": [\"\"],\n    \"isLatestVersion\": true,\n    \"createdAt\": \"\",\n    \"updatedAt\": \"\"\n  }\n}\n\n</code></pre>\n<h3 id=\"response-fields\">Response Fields</h3>\n<ul>\n<li><p><strong>data</strong> (Object): Contains the details of the updated program.</p>\n<ul>\n<li><p><strong>id</strong> (String): The unique identifier of the program.</p>\n</li>\n<li><p><strong>version</strong> (Integer): The version number of the program.</p>\n</li>\n<li><p><strong>name</strong> (String): The name of the program.</p>\n</li>\n<li><p><strong>description</strong> (String): A description of the program.</p>\n</li>\n<li><p><strong>caseTypes</strong> (Array of Strings): An array of case types associated with the program.</p>\n</li>\n<li><p><strong>assetTypes</strong> (Array of Strings): An array of asset types associated with the program.</p>\n</li>\n<li><p><strong>certificateHolders</strong> (Array of Strings): The updated list of certificate holders for the program.</p>\n</li>\n<li><p><strong>isLatestVersion</strong> (Boolean): Indicates whether this is the latest version of the program.</p>\n</li>\n<li><p><strong>createdAt</strong> (String): Timestamp of when the program was created.</p>\n</li>\n<li><p><strong>updatedAt</strong> (String): Timestamp of when the program was last updated.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>certificateHolders</code> array is correctly formatted as it directly impacts the program's associations.</p>\n</li>\n<li><p>A successful response will have a status code of 200, indicating that the update was processed without errors.</p>\n</li>\n</ul>\n","urlObject":{"path":["rest","programs","{{programId}}"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"df4cddc1-2f05-4903-88c1-74f2c4114d55","name":"Risk Profiles id Response","originalRequest":{"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"certificateHolders\": [\n        \"{{firstCertificateHolderInARow}}\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/programs/67a4d1a12546e7433998478a"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 07 Oct 2025 06:24:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"465"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"67a4d1a12546e7433998478a\",\n        \"version\": 1,\n        \"name\": \"TA-Postman Program | Pre-Close | Multi Family\",\n        \"description\": \"TA-Postman Program | Pre-Close | Multi Family\",\n        \"caseTypes\": [\n            \"new\"\n        ],\n        \"assetTypes\": [\n            \"67a4d19c2546e74339981a24\"\n        ],\n        \"certificateHolders\": [\n            \"68e4880c772d0c7de30e6a25\",\n            \"67a4d1a02546e74339982df7\",\n            \"67a4d1a02546e74339982dfa\",\n            \"67a4d1a02546e74339982dfd\"\n        ],\n        \"isLatestVersion\": true,\n        \"createdAt\": \"2025-02-06T15:13:37.307Z\",\n        \"updatedAt\": \"2025-08-19T07:43:54.378Z\"\n    }\n}"}],"_postman_id":"dccba5fa-29aa-408c-94fd-86d44ec339aa"},{"name":"Policies","event":[{"listen":"test","script":{"id":"9d2d0bcd-2c1b-41b4-9278-4a28844a05b0","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('policyId', responseData.data[0].id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"85897f1c-59a7-44a1-baef-27fa78975ede","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n              \"insuranceContacts\": [\n                \"65eecdbf322fdc969c64b990\"\n            ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/policies","description":"<h1 id=\"get-restpolicies\">GET /rest/policies</h1>\n<p>This endpoint retrieves a list of insurance policies associated with specified insurance contacts. It allows users to filter the policies based on the provided contact identifiers.</p>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<p>The request does not require any query parameters. Instead, it accepts a JSON payload in the request body with the following structure:</p>\n<ul>\n<li><strong>insuranceContacts</strong> (array of strings): A list of unique identifiers for the insurance contacts. Each identifier should correspond to a valid contact in the system.</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"insuranceContacts\": [\"65eecdbf322fdc969c64b990\"]\n}\n\n</code></pre>\n<h2 id=\"response-structure\">Response Structure</h2>\n<p>The response will return a JSON object containing the details of the insurance policies associated with the specified contacts. The structure of the response may include:</p>\n<ul>\n<li><p><strong>policies</strong> (array): An array of policy objects, where each object contains details about a specific policy, such as:</p>\n<ul>\n<li><p><strong>policyId</strong> (string): The unique identifier for the policy.</p>\n</li>\n<li><p><strong>policyName</strong> (string): The name of the policy.</p>\n</li>\n<li><p><strong>status</strong> (string): The current status of the policy (e.g., active, inactive).</p>\n</li>\n<li><p><strong>contactId</strong> (string): The identifier of the associated insurance contact.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Filters</p>\n<ul>\n<li><p>?escalationType[eq]=nonResponsiveBroker/waiverBlockingApproval/newICNeeded/lenderPlace/ noDocumentLenderPlace/missingAssetInformation</p>\n</li>\n<li><p>?id[eq]=YourId</p>\n</li>\n<li><p>waiverStatus[eq]=approved,pendingApproval</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"policies\": [\n    {\n      \"policyId\": \"abc123\",\n      \"policyName\": \"Home Insurance\",\n      \"status\": \"active\",\n      \"contactId\": \"65eecdbf322fdc969c64b990\"\n    }\n  ]\n}\n\n</code></pre>\n<p>This endpoint is essential for users needing to manage and review insurance policies linked to specific contacts efficiently.</p>\n","urlObject":{"path":["rest","policies"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"0ec304cd-f49f-4802-b49e-11f2ff683367","name":"Policies - Response","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text","disabled":true}],"url":"https://api-v2-test.tryadvocate.com/rest/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:50:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25429"},{"key":"Connection","value":"close"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 64,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"685304019c8ebe5a6504d7df\",\n            \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"6852fb8e9c8ebe5a6504c394\",\n                \"6852fb9f9c8ebe5a6504c653\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb8e9c8ebe5a6504c394\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"6852fb9f9c8ebe5a6504c653\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-18T18:22:57.546Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-18T18:22:57.059Z\",\n            \"updatedAt\": \"2025-06-18T18:22:58.590Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"6852fb619c8ebe5a6504b83f\",\n            \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"6852fb2f9c8ebe5a6504b033\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb2f9c8ebe5a6504b033\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"685304529c8ebe5a6504e27d\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-18T17:46:09.305Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-18T17:46:09.279Z\",\n            \"updatedAt\": \"2025-06-18T18:24:53.793Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"6852f1769c8ebe5a650484d6\",\n            \"caseId\": \"6852f1729c8ebe5a65047414\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"6852f1739c8ebe5a650476be\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852f1739c8ebe5a650476be\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-18T17:03:50.649Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-18T17:03:50.620Z\",\n            \"updatedAt\": \"2025-06-18T17:03:51.943Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"684aab24d6a91c15ef16d066\",\n            \"caseId\": \"684aab21d6a91c15ef16c5b0\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"684aab22d6a91c15ef16c85a\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684aab22d6a91c15ef16c85a\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684ad46bd6a91c15ef29584c\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-12T10:25:40.537Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-12T10:25:40.491Z\",\n            \"updatedAt\": \"2025-06-12T13:22:02.404Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"684a3a52084a00665f5a4dd8\",\n            \"caseId\": \"684a3a4f084a00665f5a4322\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"684a3a4f084a00665f5a45cc\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684a3a4f084a00665f5a45cc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684a42dc084a00665f6b6afc\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-12T02:24:18.221Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-12T02:24:18.188Z\",\n            \"updatedAt\": \"2025-06-12T03:00:45.907Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"684999b3084a00665f59ada9\",\n            \"caseId\": \"684999af084a00665f599d1d\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"684999b0084a00665f599fc7\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684999b0084a00665f599fc7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"684a3a47084a00665f5a3747\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T14:58:59.790Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T14:58:59.758Z\",\n            \"updatedAt\": \"2025-06-12T02:24:08.954Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"68499827084a00665f5943bf\",\n            \"caseId\": \"68499823084a00665f592d81\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68499823084a00665f59302b\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499823084a00665f59302b\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68499836084a00665f59679f\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T14:52:23.483Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T14:52:23.458Z\",\n            \"updatedAt\": \"2025-06-11T14:52:39.760Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"6849951a084a00665f4a6d4e\",\n            \"caseId\": \"6849950f084a00665f4a2efb\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68499511084a00665f4a3423\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499511084a00665f4a3423\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"6849954f084a00665f4b716a\"\n            ],\n            \"productType\": {\n                \"id\": \"637674b3bdddd70013909fff\",\n                \"key\": \"generalCommercialLiabilityPackagePolicyBnjuUr6Knd\",\n                \"name\": \"General Commercial Package Policy\",\n                \"pathName\": \"Commercial Lines > Package Policy > General Commercial Package Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T14:39:22.658Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T14:39:22.281Z\",\n            \"updatedAt\": \"2025-06-11T14:40:19.202Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"68497fd4a0b0d30e2c551ce8\",\n            \"caseId\": \"68497fc1a0b0d30e2c54a6ce\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497fc4a0b0d30e2c54b7d0\",\n                \"68497fc8a0b0d30e2c54d389\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fc4a0b0d30e2c54b7d0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497fc8a0b0d30e2c54d389\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T13:08:36.636Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T13:08:36.098Z\",\n            \"updatedAt\": \"2025-06-11T13:08:39.613Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497fbaa0b0d30e2c5483f5\",\n            \"caseId\": \"68497fafa0b0d30e2c544d81\",\n            \"broker\": null,\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"advocateReviewingCompliance\",\n            \"score\": {\n                \"passing\": 1,\n                \"total\": 57\n            },\n            \"assets\": [\n                \"68497fb1a0b0d30e2c545287\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fb1a0b0d30e2c545287\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68498e89a0b0d30e2c68b0e9\"\n            ],\n            \"productType\": {\n                \"id\": \"637673b0bdddd70013909ede\",\n                \"key\": \"boilerAndMachineryEquipmentBreakdownCoverage03O0TmTfaW\",\n                \"name\": \"Boiler and Machinery / Equipment Breakdown Policy\",\n                \"pathName\": \"Commercial Lines > Property Policy > Single-Peril Policy > Boiler and Machinery / Equipment Breakdown Policy\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"advocateReviewingCompliance\",\n                    \"createdAt\": \"2025-06-11T13:08:12.891Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T13:08:10.867Z\",\n            \"updatedAt\": \"2025-06-11T14:22:25.779Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": \"Advocate\"\n        },\n        {\n            \"id\": \"68497c231c67c221e8bcf115\",\n            \"caseId\": \"68497bfe1c67c221e8bb86c1\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497c021c67c221e8bb96a0\",\n                \"68497c081c67c221e8bbd235\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497c021c67c221e8bb96a0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c081c67c221e8bbd235\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:52.043Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:51.325Z\",\n            \"updatedAt\": \"2025-06-11T12:52:59.436Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c161c67c221e8bc56c0\",\n            \"caseId\": \"68497bf61c67c221e8bb4604\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bfd1c67c221e8bb82f7\",\n                \"68497c001c67c221e8bb8ed5\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb82f7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c001c67c221e8bb8ed5\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:39.829Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:38.091Z\",\n            \"updatedAt\": \"2025-06-11T12:52:52.207Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c141c67c221e8bc46bf\",\n            \"caseId\": \"68497bee1c67c221e8bb0e73\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bf61c67c221e8bb4111\",\n                \"68497bfd1c67c221e8bb80a8\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf61c67c221e8bb4111\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb80a8\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:37.138Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:36.623Z\",\n            \"updatedAt\": \"2025-06-11T12:52:52.057Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c131c67c221e8bc3ad0\",\n            \"caseId\": \"68497bef1c67c221e8bb11f4\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bf71c67c221e8bb4bcc\",\n                \"68497bfd1c67c221e8bb8461\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf71c67c221e8bb4bcc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb8461\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:35.500Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:35.146Z\",\n            \"updatedAt\": \"2025-06-11T12:52:49.439Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        },\n        {\n            \"id\": \"68497c121c67c221e8bc32f5\",\n            \"caseId\": \"68497bf01c67c221e8bb17b6\",\n            \"broker\": null,\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"status\": \"APPROVED\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"assets\": [\n                \"68497bf81c67c221e8bb51a4\",\n                \"68497bfe1c67c221e8bb8673\"\n            ],\n            \"documents\": [],\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf81c67c221e8bb51a4\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfe1c67c221e8bb8673\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"insured\": [],\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"productType\": {\n                \"id\": \"63767180bdddd70013909ad5\",\n                \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n                \"name\": \"Property Policy Quote\",\n                \"pathName\": \"Quotes > Property Policy Quote\"\n            },\n            \"transitions\": [\n                {\n                    \"to\": \"APPROVED\",\n                    \"createdAt\": \"2025-06-11T12:52:35.237Z\"\n                }\n            ],\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"policyStructure\": \"trueScheduled\",\n            \"carrier\": null,\n            \"createdAt\": \"2025-06-11T12:52:34.513Z\",\n            \"updatedAt\": \"2025-06-11T12:52:49.088Z\",\n            \"createdBy\": \"Advocate\",\n            \"updatedBy\": null\n        }\n    ]\n}"}],"_postman_id":"85897f1c-59a7-44a1-baef-27fa78975ede"},{"name":"Policy versions","event":[{"listen":"test","script":{"id":"2518743a-0363-4e5e-995a-b9303e721574","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('policyId', responseData.data[0].id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"b66d66ff-0bf4-4be7-9fe5-757caced9360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/policy-versions","description":"<h2 id=\"endpoint-get-restpolicy-versions\">Endpoint: <code>GET /rest/policy-versions</code></h2>\n<p>This endpoint retrieves a list of policy versions from the server. It is used to obtain information about different versions of policies that are available, which can be useful for tracking changes, updates, or for auditing purposes.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>This endpoint does not require any input parameters. It is a simple GET request that retrieves data without needing additional information from the client.</p>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response from this endpoint is expected to be in JSON format and will contain an array of policy version objects. Each object typically includes the following fields:</p>\n<ul>\n<li><p><code>id</code>: A unique identifier for the policy version.</p>\n</li>\n<li><p><code>name</code>: The name of the policy version.</p>\n</li>\n<li><p><code>created_at</code>: The timestamp when the policy version was created.</p>\n</li>\n<li><p><code>updated_at</code>: The timestamp when the policy version was last updated.</p>\n</li>\n<li><p><code>status</code>: The current status of the policy version (e.g., active, inactive).</p>\n</li>\n</ul>\n<h3 id=\"filters\">Filters</h3>\n<ul>\n<li><p>?escalationType[eq]=nonResponsiveBroker/waiverBlockingApproval/newICNeeded/lenderPlace/ noDocumentLenderPlace/missingAssetInformation</p>\n</li>\n<li><p>?id[eq]=YourId</p>\n</li>\n<li><p>waiverStatus[eq]=approved,pendingApproval</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"id\": \"123\",\n        \"name\": \"Policy Version 1\",\n        \"created_at\": \"2023-01-01T00:00:00Z\",\n        \"updated_at\": \"2023-01-10T00:00:00Z\",\n        \"status\": \"active\"\n    },\n    {\n        \"id\": \"124\",\n        \"name\": \"Policy Version 2\",\n        \"created_at\": \"2023-02-01T00:00:00Z\",\n        \"updated_at\": \"2023-02-10T00:00:00Z\",\n        \"status\": \"inactive\"\n    }\n]\n\n</code></pre>\n<p>This structure allows clients to easily parse and utilize the policy version data returned by the API.</p>\n","urlObject":{"path":["rest","policy-versions"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"eb46e027-cc9b-4748-97ad-86249fa2cb93","name":"Policy versions - Response","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text","disabled":true}],"url":"https://api-v2-test.tryadvocate.com/rest/policy-versions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:50:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"20735"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 64,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"685304019c8ebe5a6504d87c\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n            \"broker\": null,\n            \"policyId\": \"685304019c8ebe5a6504d7df\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"6852fb8e9c8ebe5a6504c394\",\n                \"6852fb9f9c8ebe5a6504c653\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb8e9c8ebe5a6504c394\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"6852fb9f9c8ebe5a6504c653\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"createdAt\": \"2025-06-18T18:22:57.659Z\",\n            \"updatedAt\": \"2025-06-18T18:22:58.526Z\"\n        },\n        {\n            \"id\": \"6852fb619c8ebe5a6504b8ae\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n            \"broker\": null,\n            \"policyId\": \"6852fb619c8ebe5a6504b83f\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"6852fb2f9c8ebe5a6504b033\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb2f9c8ebe5a6504b033\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"685304529c8ebe5a6504e27d\"\n            ],\n            \"createdAt\": \"2025-06-18T17:46:09.448Z\",\n            \"updatedAt\": \"2025-06-18T17:46:10.468Z\"\n        },\n        {\n            \"id\": \"6852f1769c8ebe5a65048545\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6852f1729c8ebe5a65047414\",\n            \"broker\": null,\n            \"policyId\": \"6852f1769c8ebe5a650484d6\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"6852f1739c8ebe5a650476be\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852f1739c8ebe5a650476be\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"createdAt\": \"2025-06-18T17:03:50.758Z\",\n            \"updatedAt\": \"2025-06-18T17:03:51.846Z\"\n        },\n        {\n            \"id\": \"684aab24d6a91c15ef16d0d5\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"684aab21d6a91c15ef16c5b0\",\n            \"broker\": null,\n            \"policyId\": \"684aab24d6a91c15ef16d066\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"684aab22d6a91c15ef16c85a\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684aab22d6a91c15ef16c85a\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684ad46bd6a91c15ef29584c\"\n            ],\n            \"createdAt\": \"2025-06-12T10:25:40.635Z\",\n            \"updatedAt\": \"2025-06-12T10:25:41.287Z\"\n        },\n        {\n            \"id\": \"684a3a52084a00665f5a4e47\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"684a3a4f084a00665f5a4322\",\n            \"broker\": null,\n            \"policyId\": \"684a3a52084a00665f5a4dd8\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"684a3a4f084a00665f5a45cc\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684a3a4f084a00665f5a45cc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684a42dc084a00665f6b6afc\"\n            ],\n            \"createdAt\": \"2025-06-12T02:24:18.325Z\",\n            \"updatedAt\": \"2025-06-12T02:24:18.999Z\"\n        },\n        {\n            \"id\": \"684999b3084a00665f59ae18\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"684999af084a00665f599d1d\",\n            \"broker\": null,\n            \"policyId\": \"684999b3084a00665f59ada9\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"684999b0084a00665f599fc7\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684999b0084a00665f599fc7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684a3a47084a00665f5a3747\"\n            ],\n            \"createdAt\": \"2025-06-11T14:58:59.962Z\",\n            \"updatedAt\": \"2025-06-11T14:59:02.432Z\"\n        },\n        {\n            \"id\": \"68499827084a00665f59442e\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68499823084a00665f592d81\",\n            \"broker\": null,\n            \"policyId\": \"68499827084a00665f5943bf\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68499823084a00665f59302b\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499823084a00665f59302b\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68499836084a00665f59679f\"\n            ],\n            \"createdAt\": \"2025-06-11T14:52:23.584Z\",\n            \"updatedAt\": \"2025-06-11T14:52:24.263Z\"\n        },\n        {\n            \"id\": \"6849951d084a00665f4a7561\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6849950f084a00665f4a2efb\",\n            \"broker\": null,\n            \"policyId\": \"6849951a084a00665f4a6d4e\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68499511084a00665f4a3423\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499511084a00665f4a3423\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"6849954f084a00665f4b716a\"\n            ],\n            \"createdAt\": \"2025-06-11T14:39:25.287Z\",\n            \"updatedAt\": \"2025-06-11T14:39:28.389Z\"\n        },\n        {\n            \"id\": \"68497fd5a0b0d30e2c552105\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497fc1a0b0d30e2c54a6ce\",\n            \"broker\": null,\n            \"policyId\": \"68497fd4a0b0d30e2c551ce8\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497fc4a0b0d30e2c54b7d0\",\n                \"68497fc8a0b0d30e2c54d389\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fc4a0b0d30e2c54b7d0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497fc8a0b0d30e2c54d389\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T13:08:37.012Z\",\n            \"updatedAt\": \"2025-06-11T13:08:39.185Z\"\n        },\n        {\n            \"id\": \"68497fbda0b0d30e2c548dfb\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497fafa0b0d30e2c544d81\",\n            \"broker\": null,\n            \"policyId\": \"68497fbaa0b0d30e2c5483f5\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 1,\n                \"total\": 57\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497fb1a0b0d30e2c545287\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fb1a0b0d30e2c545287\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68498e89a0b0d30e2c68b0e9\"\n            ],\n            \"createdAt\": \"2025-06-11T13:08:13.580Z\",\n            \"updatedAt\": \"2025-06-11T14:22:25.827Z\"\n        },\n        {\n            \"id\": \"68497c241c67c221e8bcfa19\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bfe1c67c221e8bb86c1\",\n            \"broker\": null,\n            \"policyId\": \"68497c231c67c221e8bcf115\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497c021c67c221e8bb96a0\",\n                \"68497c081c67c221e8bbd235\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497c021c67c221e8bb96a0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c081c67c221e8bbd235\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:52.700Z\",\n            \"updatedAt\": \"2025-06-11T12:52:58.952Z\"\n        },\n        {\n            \"id\": \"68497c1f1c67c221e8bccb3b\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bf61c67c221e8bb4604\",\n            \"broker\": null,\n            \"policyId\": \"68497c161c67c221e8bc56c0\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bfd1c67c221e8bb82f7\",\n                \"68497c001c67c221e8bb8ed5\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb82f7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c001c67c221e8bb8ed5\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:47.813Z\",\n            \"updatedAt\": \"2025-06-11T12:52:51.918Z\"\n        },\n        {\n            \"id\": \"68497c1c1c67c221e8bca69b\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bee1c67c221e8bb0e73\",\n            \"broker\": null,\n            \"policyId\": \"68497c141c67c221e8bc46bf\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bf61c67c221e8bb4111\",\n                \"68497bfd1c67c221e8bb80a8\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf61c67c221e8bb4111\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb80a8\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:44.810Z\",\n            \"updatedAt\": \"2025-06-11T12:52:51.667Z\"\n        },\n        {\n            \"id\": \"68497c161c67c221e8bc56a3\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bef1c67c221e8bb11f4\",\n            \"broker\": null,\n            \"policyId\": \"68497c131c67c221e8bc3ad0\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bf71c67c221e8bb4bcc\",\n                \"68497bfd1c67c221e8bb8461\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf71c67c221e8bb4bcc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb8461\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:38.017Z\",\n            \"updatedAt\": \"2025-06-11T12:52:49.181Z\"\n        },\n        {\n            \"id\": \"68497c141c67c221e8bc47f9\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bee1c67c221e8bb0f2e\",\n            \"broker\": null,\n            \"policyId\": \"68497c111c67c221e8bc313f\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bf71c67c221e8bb4829\",\n                \"68497bfd1c67c221e8bb8066\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf71c67c221e8bb4829\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb8066\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:36.856Z\",\n            \"updatedAt\": \"2025-06-11T12:52:48.407Z\"\n        }\n    ]\n}"}],"_postman_id":"b66d66ff-0bf4-4be7-9fe5-757caced9360"},{"name":"Policy","event":[{"listen":"test","script":{"id":"2518743a-0363-4e5e-995a-b9303e721574","exec":["const responseData = pm.response.json();","pm.collectionVariables.set('policyId', responseData.data[0].id)","","pm.test(\"Response status code is 200\", function () {","  pm.expect(pm.response.code).to.equal(200);","});"],"type":"text/javascript","packages":{}}}],"id":"591c4367-0e49-40fa-b73f-fb06af808ad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"PATCH","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"insuranceContacts\": [\"insuranceContactID\"],\n    \"waiverStatus\": \"pendingApproval\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-v2-test.tryadvocate.com/rest/policy/{{yourPolicyID}}","description":"<h2 id=\"endpoint-patch-restpolicy-versionsid\">Endpoint: <code>PATCH /rest/policy-versions/id</code></h2>\n<p>This endpoint retrieves a list of policy versions from the server. It is used to edit information about different versions of policies that are available.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><strong>insuranceContacts</strong> (String): ids of IC to be edited</p>\n<p><strong>waiverStatus</strong> (String): null, \"pendingApproval\", \"approved\"  </p>\n<p>You cannot change the waiver status for approved policies.</p>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response from this endpoint is expected to be in JSON format and will contain an array of policy version objects. Each object typically includes the following fields:</p>\n<ul>\n<li><p><code>id</code>: A unique identifier for the policy version.</p>\n</li>\n<li><p><code>name</code>: The name of the policy version.</p>\n</li>\n<li><p><code>created_at</code>: The timestamp when the policy version was created.</p>\n</li>\n<li><p><code>updated_at</code>: The timestamp when the policy version was last updated.</p>\n</li>\n<li><p><code>status</code>: The current status of the policy version (e.g., active, inactive).</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"id\": \"123\",\n        \"name\": \"Policy Version 1\",\n        \"created_at\": \"2023-01-01T00:00:00Z\",\n        \"updated_at\": \"2023-01-10T00:00:00Z\",\n        \"status\": \"active\"\n    },\n    {\n        \"id\": \"124\",\n        \"name\": \"Policy Version 2\",\n        \"created_at\": \"2023-02-01T00:00:00Z\",\n        \"updated_at\": \"2023-02-10T00:00:00Z\",\n        \"status\": \"inactive\"\n    }\n]\n\n</code></pre>\n<p>This structure allows clients to easily parse and utilize the policy version data returned by the API.</p>\n","urlObject":{"path":["rest","policy","{{yourPolicyID}}"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"f6e55ae5-c8dd-4b27-b019-604a17defe96","name":"Policy versions - Response","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text","disabled":true}],"url":"https://api-v2-test.tryadvocate.com/rest/policy-versions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:50:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"20735"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 64,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"685304019c8ebe5a6504d87c\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n            \"broker\": null,\n            \"policyId\": \"685304019c8ebe5a6504d7df\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"6852fb8e9c8ebe5a6504c394\",\n                \"6852fb9f9c8ebe5a6504c653\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb8e9c8ebe5a6504c394\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"6852fb9f9c8ebe5a6504c653\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"createdAt\": \"2025-06-18T18:22:57.659Z\",\n            \"updatedAt\": \"2025-06-18T18:22:58.526Z\"\n        },\n        {\n            \"id\": \"6852fb619c8ebe5a6504b8ae\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6852fb119c8ebe5a6504ad89\",\n            \"broker\": null,\n            \"policyId\": \"6852fb619c8ebe5a6504b83f\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"6852fb2f9c8ebe5a6504b033\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852fb2f9c8ebe5a6504b033\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"685304529c8ebe5a6504e27d\"\n            ],\n            \"createdAt\": \"2025-06-18T17:46:09.448Z\",\n            \"updatedAt\": \"2025-06-18T17:46:10.468Z\"\n        },\n        {\n            \"id\": \"6852f1769c8ebe5a65048545\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6852f1729c8ebe5a65047414\",\n            \"broker\": null,\n            \"policyId\": \"6852f1769c8ebe5a650484d6\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"6852f1739c8ebe5a650476be\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"6852f1739c8ebe5a650476be\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684982b2a0b0d30e2c570814\"\n            ],\n            \"createdAt\": \"2025-06-18T17:03:50.758Z\",\n            \"updatedAt\": \"2025-06-18T17:03:51.846Z\"\n        },\n        {\n            \"id\": \"684aab24d6a91c15ef16d0d5\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"684aab21d6a91c15ef16c5b0\",\n            \"broker\": null,\n            \"policyId\": \"684aab24d6a91c15ef16d066\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"684aab22d6a91c15ef16c85a\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684aab22d6a91c15ef16c85a\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684ad46bd6a91c15ef29584c\"\n            ],\n            \"createdAt\": \"2025-06-12T10:25:40.635Z\",\n            \"updatedAt\": \"2025-06-12T10:25:41.287Z\"\n        },\n        {\n            \"id\": \"684a3a52084a00665f5a4e47\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"684a3a4f084a00665f5a4322\",\n            \"broker\": null,\n            \"policyId\": \"684a3a52084a00665f5a4dd8\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"684a3a4f084a00665f5a45cc\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684a3a4f084a00665f5a45cc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684a42dc084a00665f6b6afc\"\n            ],\n            \"createdAt\": \"2025-06-12T02:24:18.325Z\",\n            \"updatedAt\": \"2025-06-12T02:24:18.999Z\"\n        },\n        {\n            \"id\": \"684999b3084a00665f59ae18\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"684999af084a00665f599d1d\",\n            \"broker\": null,\n            \"policyId\": \"684999b3084a00665f59ada9\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"684999b0084a00665f599fc7\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"684999b0084a00665f599fc7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"684a3a47084a00665f5a3747\"\n            ],\n            \"createdAt\": \"2025-06-11T14:58:59.962Z\",\n            \"updatedAt\": \"2025-06-11T14:59:02.432Z\"\n        },\n        {\n            \"id\": \"68499827084a00665f59442e\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68499823084a00665f592d81\",\n            \"broker\": null,\n            \"policyId\": \"68499827084a00665f5943bf\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68499823084a00665f59302b\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499823084a00665f59302b\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68499836084a00665f59679f\"\n            ],\n            \"createdAt\": \"2025-06-11T14:52:23.584Z\",\n            \"updatedAt\": \"2025-06-11T14:52:24.263Z\"\n        },\n        {\n            \"id\": \"6849951d084a00665f4a7561\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"6849950f084a00665f4a2efb\",\n            \"broker\": null,\n            \"policyId\": \"6849951a084a00665f4a6d4e\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68499511084a00665f4a3423\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68499511084a00665f4a3423\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53e\",\n                            \"name\": \"General Liability\",\n                            \"key\": \"generalLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f53f\",\n                            \"name\": \"Umbrella Liability\",\n                            \"key\": \"umbrellaLiability\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"6849954f084a00665f4b716a\"\n            ],\n            \"createdAt\": \"2025-06-11T14:39:25.287Z\",\n            \"updatedAt\": \"2025-06-11T14:39:28.389Z\"\n        },\n        {\n            \"id\": \"68497fd5a0b0d30e2c552105\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497fc1a0b0d30e2c54a6ce\",\n            \"broker\": null,\n            \"policyId\": \"68497fd4a0b0d30e2c551ce8\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497fc4a0b0d30e2c54b7d0\",\n                \"68497fc8a0b0d30e2c54d389\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fc4a0b0d30e2c54b7d0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497fc8a0b0d30e2c54d389\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T13:08:37.012Z\",\n            \"updatedAt\": \"2025-06-11T13:08:39.185Z\"\n        },\n        {\n            \"id\": \"68497fbda0b0d30e2c548dfb\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497fafa0b0d30e2c544d81\",\n            \"broker\": null,\n            \"policyId\": \"68497fbaa0b0d30e2c5483f5\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 1,\n                \"total\": 57\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497fb1a0b0d30e2c545287\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497fb1a0b0d30e2c545287\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68498e89a0b0d30e2c68b0e9\"\n            ],\n            \"createdAt\": \"2025-06-11T13:08:13.580Z\",\n            \"updatedAt\": \"2025-06-11T14:22:25.827Z\"\n        },\n        {\n            \"id\": \"68497c241c67c221e8bcfa19\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bfe1c67c221e8bb86c1\",\n            \"broker\": null,\n            \"policyId\": \"68497c231c67c221e8bcf115\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497c021c67c221e8bb96a0\",\n                \"68497c081c67c221e8bbd235\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497c021c67c221e8bb96a0\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c081c67c221e8bbd235\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:52.700Z\",\n            \"updatedAt\": \"2025-06-11T12:52:58.952Z\"\n        },\n        {\n            \"id\": \"68497c1f1c67c221e8bccb3b\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bf61c67c221e8bb4604\",\n            \"broker\": null,\n            \"policyId\": \"68497c161c67c221e8bc56c0\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bfd1c67c221e8bb82f7\",\n                \"68497c001c67c221e8bb8ed5\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb82f7\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497c001c67c221e8bb8ed5\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:47.813Z\",\n            \"updatedAt\": \"2025-06-11T12:52:51.918Z\"\n        },\n        {\n            \"id\": \"68497c1c1c67c221e8bca69b\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bee1c67c221e8bb0e73\",\n            \"broker\": null,\n            \"policyId\": \"68497c141c67c221e8bc46bf\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bf61c67c221e8bb4111\",\n                \"68497bfd1c67c221e8bb80a8\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf61c67c221e8bb4111\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb80a8\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:44.810Z\",\n            \"updatedAt\": \"2025-06-11T12:52:51.667Z\"\n        },\n        {\n            \"id\": \"68497c161c67c221e8bc56a3\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bef1c67c221e8bb11f4\",\n            \"broker\": null,\n            \"policyId\": \"68497c131c67c221e8bc3ad0\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bf71c67c221e8bb4bcc\",\n                \"68497bfd1c67c221e8bb8461\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf71c67c221e8bb4bcc\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb8461\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:38.017Z\",\n            \"updatedAt\": \"2025-06-11T12:52:49.181Z\"\n        },\n        {\n            \"id\": \"68497c141c67c221e8bc47f9\",\n            \"isLatestVersion\": true,\n            \"caseId\": \"68497bee1c67c221e8bb0f2e\",\n            \"broker\": null,\n            \"policyId\": \"68497c111c67c221e8bc313f\",\n            \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n            \"endDate\": \"2024-12-27T00:00:00.000Z\",\n            \"startDate\": \"2024-12-10T00:00:00.000Z\",\n            \"score\": {\n                \"passing\": 0,\n                \"total\": 0\n            },\n            \"documents\": [],\n            \"assets\": [\n                \"68497bf71c67c221e8bb4829\",\n                \"68497bfd1c67c221e8bb8066\"\n            ],\n            \"policyStructure\": \"trueScheduled\",\n            \"perilsByAsset\": [\n                {\n                    \"asset\": \"68497bf71c67c221e8bb4829\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                },\n                {\n                    \"asset\": \"68497bfd1c67c221e8bb8066\",\n                    \"perils\": [\n                        {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"name\": \"Property\",\n                            \"key\": \"property\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"name\": \"Wind Hail\",\n                            \"key\": \"windHail\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"name\": \"Named Storm\",\n                            \"key\": \"namedStorm\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"name\": \"Earthquake\",\n                            \"key\": \"earthquake\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"name\": \"Boiler & Machinery\",\n                            \"key\": \"boilerMachinery\"\n                        },\n                        {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"name\": \"Terrorism Property\",\n                            \"key\": \"terrorismProperty\"\n                        }\n                    ]\n                }\n            ],\n            \"carrier\": null,\n            \"escalationType\": null,\n            \"waiverStatus\": null,\n            \"insuranceContacts\": [\n                \"68480fad8eaef76bd32b82d7\"\n            ],\n            \"createdAt\": \"2025-06-11T12:52:36.856Z\",\n            \"updatedAt\": \"2025-06-11T12:52:48.407Z\"\n        }\n    ]\n}"}],"_postman_id":"591c4367-0e49-40fa-b73f-fb06af808ad0"},{"name":"Policies id","event":[{"listen":"test","script":{"id":"85dfac34-35dd-45ec-944b-f781c101d515","exec":["const responseData = pm.response.json().data;","","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"953f200b-d2e5-457f-a290-9a8265ae1cca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/policies/","description":"<h3 id=\"get-policy-details\">Get Policy Details</h3>\n<p>This endpoint retrieves the details of a specific policy identified by <code>policyIdQuotes</code>.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://api-v2-test.tryadvocate.com/rest/policies/</code></p>\n</li>\n</ul>\n<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><code>policyIdQuotes</code> (path parameter): The unique identifier for the policy whose details are being requested.</li>\n</ul>\n<h4 id=\"expected-response-format\">Expected Response Format</h4>\n<p>The response will contain the details of the requested policy in a structured format. The exact structure of the response will depend on the policy details stored in the system.</p>\n","urlObject":{"path":["rest","policies",""],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"00b901c5-ff8e-45ff-a3ec-2334dbf9c24a","name":"Policies id - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/policies/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:50:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1890"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"685304019c8ebe5a6504d7df\",\n        \"caseId\": \"6852fb899c8ebe5a6504c0ea\",\n        \"broker\": null,\n        \"policyNumber\": \"Policy Quotes PostClose Renewal\",\n        \"startDate\": \"2024-12-10T00:00:00.000Z\",\n        \"endDate\": \"2024-12-27T00:00:00.000Z\",\n        \"status\": \"APPROVED\",\n        \"score\": {\n            \"passing\": 0,\n            \"total\": 0\n        },\n        \"assets\": [\n            \"6852fb8e9c8ebe5a6504c394\",\n            \"6852fb9f9c8ebe5a6504c653\"\n        ],\n        \"documents\": [],\n        \"perilsByAsset\": [\n            {\n                \"asset\": \"6852fb8e9c8ebe5a6504c394\",\n                \"perils\": [\n                    {\n                        \"id\": \"653633033ee3a40016d5f532\",\n                        \"name\": \"Property\",\n                        \"key\": \"property\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f537\",\n                        \"name\": \"Wind Hail\",\n                        \"key\": \"windHail\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f536\",\n                        \"name\": \"Named Storm\",\n                        \"key\": \"namedStorm\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f546\",\n                        \"name\": \"Earthquake\",\n                        \"key\": \"earthquake\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f534\",\n                        \"name\": \"Boiler & Machinery\",\n                        \"key\": \"boilerMachinery\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f538\",\n                        \"name\": \"Terrorism Property\",\n                        \"key\": \"terrorismProperty\"\n                    }\n                ]\n            },\n            {\n                \"asset\": \"6852fb9f9c8ebe5a6504c653\",\n                \"perils\": [\n                    {\n                        \"id\": \"653633033ee3a40016d5f532\",\n                        \"name\": \"Property\",\n                        \"key\": \"property\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f537\",\n                        \"name\": \"Wind Hail\",\n                        \"key\": \"windHail\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f536\",\n                        \"name\": \"Named Storm\",\n                        \"key\": \"namedStorm\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f546\",\n                        \"name\": \"Earthquake\",\n                        \"key\": \"earthquake\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f534\",\n                        \"name\": \"Boiler & Machinery\",\n                        \"key\": \"boilerMachinery\"\n                    },\n                    {\n                        \"id\": \"653633033ee3a40016d5f538\",\n                        \"name\": \"Terrorism Property\",\n                        \"key\": \"terrorismProperty\"\n                    }\n                ]\n            }\n        ],\n        \"insured\": [],\n        \"insuranceContacts\": [\n            \"684982b2a0b0d30e2c570814\"\n        ],\n        \"productType\": {\n            \"id\": \"63767180bdddd70013909ad5\",\n            \"key\": \"propertyPolicyQuote3HoPj3Zdk6\",\n            \"name\": \"Property Policy Quote\",\n            \"pathName\": \"Quotes > Property Policy Quote\"\n        },\n        \"transitions\": [\n            {\n                \"to\": \"APPROVED\",\n                \"createdAt\": \"2025-06-18T18:22:57.546Z\"\n            }\n        ],\n        \"escalationType\": null,\n        \"waiverStatus\": null,\n        \"policyStructure\": \"trueScheduled\",\n        \"carrier\": null,\n        \"createdAt\": \"2025-06-18T18:22:57.059Z\",\n        \"updatedAt\": \"2025-06-18T18:22:58.590Z\",\n        \"createdBy\": \"Advocate\",\n        \"updatedBy\": null\n    }\n}"}],"_postman_id":"953f200b-d2e5-457f-a290-9a8265ae1cca"},{"name":"Report","event":[{"listen":"test","script":{"id":"5df7056f-b877-4b1a-8ea2-d078d4d5afa8","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"fe145b3c-8b51-4a64-a155-0e5accf2d9bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/case-reports/674993c53eb1c51bcae4d905","description":"<h3 id=\"case-reports-retrieval\">Case Reports Retrieval</h3>\n<p>This endpoint retrieves detailed case reports based on the specified case ID and associated policy. It is particularly useful for users who need to access comprehensive information regarding a specific case.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><strong>caseIdWithPolicy</strong> (path parameter):</p>\n<ul>\n<li><p>Type: String</p>\n</li>\n<li><p>Description: The unique identifier for the case, which includes the associated policy information. This parameter is required to fetch the correct case report.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will contain the case report details, structured in a JSON format. The exact fields returned in the response may include, but are not limited to:</p>\n<ul>\n<li><p>Case details (e.g., amount, interest rate)</p>\n</li>\n<li><p>Insured information</p>\n</li>\n<li><p>Payment history</p>\n</li>\n<li><p>Policy details</p>\n</li>\n</ul>\n<p>The response will provide the necessary data for users to understand the status and specifics of the case in question.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":true,"source":{"_postman_id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","id":"d4dc4a20-3582-46bf-9bb1-8f8a89b8288a","name":"Advocate - RestAPI Documentation","type":"collection"}},"urlObject":{"path":["rest","case-reports","674993c53eb1c51bcae4d905"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"6586853e-34fa-4a5d-91b5-1faa1502ccd8","name":"Report - Response","originalRequest":{"method":"GET","header":[],"url":"https://api-v2-test.tryadvocate.com/rest/case-reports/674993c53eb1c51bcae4d905"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Jun 2025 18:51:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22472"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests 1;default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"1000"},{"key":"x-ratelimit-remaining","value":"999"},{"key":"x-ratelimit-reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"caseDetails\": {\n        \"title\": \"Renewal-Case-RestAPICase Docs Audit Name\",\n        \"ref\": \"145780752-188734989\",\n        \"lender\": \"TA-Postman-Lender\",\n        \"insured\": [\n            {\n                \"displayName\": \"hi99 hi99\"\n            }\n        ],\n        \"dealClosingAt\": \"2025-12-15T18:44:48.999Z\"\n    },\n    \"requirements\": {\n        \"policy\": {\n            \"label\": \"Policy Requirements\",\n            \"rules\": [\n                {\n                    \"id\": \"639771546e899e0012a42bf1\",\n                    \"header\": \"Insurance Carrier Rating\",\n                    \"description\": \"Carrier must have an AM Best Rating of \\nA-\\n/\\nVIII\\n.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"63979ca96e899e0012a45d64\",\n                    \"header\": \"Verify Policy Effective Date\",\n                    \"description\": \"The policy must be active at or before Case Closing Date (12-15-2025).\",\n                    \"peril\": null,\n                    \"passed\": true\n                },\n                {\n                    \"id\": \"6397a1226e899e0012a46964\",\n                    \"header\": \"Verify Policy Term\",\n                    \"description\": \"The policy term must be  a 12 month policy.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"63977f016e899e0012a43829\",\n                    \"header\": \"Verify Policy Expiration Date\",\n                    \"description\": \"Any policy must have at least 30 days of coverage remaining or renewal evidence will be required.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6397b06b6e899e0012a47a1d\",\n                    \"header\": \"Verify Borrower as Named Insured\",\n                    \"description\": \"The Named Insured entity on the insurance documents must match Borrower entity on the funding documents.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"63979e056e899e0012a4607c\",\n                    \"header\": \"Verify if True Blanket or Scheduled Limits Policy\",\n                    \"description\": \"All policies must state whether or not they are a Standalone, True Blanket, or a Scheduled Limits Policy\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532d3e51bf04500139861c8\",\n                    \"header\": \"Verify Limit Restriction\",\n                    \"description\": \"Is this location restricted to values reported on the schedule of locations and subject to an overall limit that is shared with other locations or is coverage provided by a blanket limit?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"651d8acfc610f50012ddfd77\",\n                    \"header\": \"Verify Insurance Program Type\",\n                    \"description\": \"Insurance Coverage provided by a Risk Purchasing Group/Risk Retention Group or Captive Insurer is not accepted.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"651d6d77c610f50012ba8f19\",\n                    \"header\": \"Verify No Aggregate CAP\",\n                    \"description\": \"An Aggregate CAP is not allowed on the policy.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6377df626c98d20012fed40b\",\n                    \"header\": \"Require Lender as Mortgagee\",\n                    \"description\": \"Lender must be marked as Mortgagee.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6377e3ab6c98d20012fedcbb\",\n                    \"header\": \"Require Lender as Additional Insured\",\n                    \"description\": \"\\nLender must be marked as Additional Insured with regards to the Liability Policy.\\n\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6377d5db6c98d20012fec667\",\n                    \"header\": \"Verify Certificate Holder Details\",\n                    \"description\": \"Lender details must be: ; TA-Postman - Clause Ensuring Lender's Financial Interest in Property Insurance Payouts for Loss or Damage \",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"63bb0a81e58428001233eab8\",\n                    \"header\": \"Require Insurance Broker Details\",\n                    \"description\": \"Bound proof of insurance must include the insurance broker's details: insurance brokerage name, broker name, email, phone number, and brokerage mailing address.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6376ac626c98d20012febb8a\",\n                    \"header\": \"Require Broker Signature on Binding Documents\",\n                    \"description\": \"Include agent's signature on document.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6397b68d6e899e0012a4809d\",\n                    \"header\": \"Require Policy Collection\",\n                    \"description\": \"The long form policy must be provided.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"661ef3f011b3883ee345c0ac\",\n                    \"header\": \"Total Insurable Value of the Property Policy\",\n                    \"description\": \"Provide the Total Insurable Value of the Property Policy.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"667bdc0dd48ea9b559eca5a0\",\n                    \"header\": \"Verify if True Blanket, Scheduled Limits, or Standalone Policy (Private Lenders)\",\n                    \"description\": \"All policies must state whether or not they are a Standalone, True Blanket Policy or a Scheduled Limits Policy\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"669acc2f9d79b4db0e3eda05\",\n                    \"header\": \"Verify No Gaps in Coverage\",\n                    \"description\": \"All coverages provided by the same insurance policy must have the same Policy Start and Policy End dates.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"653297f21bf04500132e6a4d\",\n                    \"header\": \"Verify Existence of Master Program\",\n                    \"description\": \"Do all the locations covered under the policy have common ownership and/or managed by the same management company?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"654138358e2d070016707396\",\n                    \"header\": \"Require Highest Number of Stories on the Blanket Policy\",\n                    \"description\": \"Provide the Highest Number of Stories on the Policy.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"653adfb512e985001688cd8a\",\n                    \"header\": \"Require Aggregate Number of Residential Units on the Blanket Policy\",\n                    \"description\": \"Provide the Aggregate Number of Residential Units covered under the Policy\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6397839a6e899e0012a43d90\",\n                    \"header\": \"Require Liability Limit Applied Per Location\",\n                    \"description\": \"The General Aggregate Limit of Liability must apply on a per location basis.\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a11b1bf045001341cb59\",\n                    \"header\": \"Verify Third Party Administrator Fund\",\n                    \"description\": \"Are funds held in a separate account managed by a Third party Administrator?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532ab0d1bf04500135eb12e\",\n                    \"header\": \"Verify Account Funding\",\n                    \"description\": \"How is the account funded?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a3c11bf0450013489a58\",\n                    \"header\": \"Verify the Size of the Fund\",\n                    \"description\": \"How much money will be maintained in the fund? \",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a2c61bf0450013468b49\",\n                    \"header\": \"Verify Access to Fund\",\n                    \"description\": \"What properties will have access to the funds? \",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a1ba1bf0450013439c03\",\n                    \"header\": \"Verify Fund Term\",\n                    \"description\": \" How long will the fund be in place? \",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532b9551bf045001375f40c\",\n                    \"header\": \"Require Minimum Fund Balance\",\n                    \"description\": \"What is the Minimum balance retained in fund? \",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c0b41bf045001381065d\",\n                    \"header\": \"Verify Replenishment of Funds\",\n                    \"description\": \"Are the funds fully Replenished at each renewal?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532ba0c1bf045001376aa9e\",\n                    \"header\": \"Verify Property Deductible Responsibility Fund\",\n                    \"description\": \" In the event of a claim, is the subject property only responsible for the deductible (paid by the TPA) that is indicated on the certificate?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6535747f1bf0450013b06eeb\",\n                    \"header\": \"Verify Existence of Maintenance Deductibles Fund\",\n                    \"description\": \"Once the aggregate deductible is eroded is there a separate maintenance deductible? If yes please advise of the deductible amount. \",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c93a1bf04500138b06d5\",\n                    \"header\": \"Verify Eroded Deductible Fund\",\n                    \"description\": \"Does the aggregate deductible have to be eroded before the carrier will pay out on any claims?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c1521bf045001381e9e6\",\n                    \"header\": \"Require Deductible Indemnity Agreement Fund\",\n                    \"description\": \"Does the policy contain a \\\"Deductible Indemnity Agreement\\\"?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c40b1bf0450013845ba1\",\n                    \"header\": \"Require Loss Drafts to include Lender as Payee Fund\",\n                    \"description\": \"Do loss drafts issued from the fund include the lender as payee?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a5aa1bf04500134cbeac\",\n                    \"header\": \"Require Master Program Name\",\n                    \"description\": \"What is the name of the Master Program Policy?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c4c21bf0450013851cea\",\n                    \"header\": \"Require Master Program Insured  Members\",\n                    \"description\": \"How many members are insured under the Master Program?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532beb71bf04500137e9d9d\",\n                    \"header\": \"Verify Master Program Entities\",\n                    \"description\": \"Are the members of the Master Program related, or are they all different and distinct entities?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532bd621bf04500137c2bd5\",\n                    \"header\": \"Verify Effects of Nonpayment Master\",\n                    \"description\": \"If one member does not pay the premium is there any impact on the program for the rest of the members?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532b7c91bf0450013747c9a\",\n                    \"header\": \"Require Master Program Participants\",\n                    \"description\": \"Who participates in the program?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c7481bf04500138720c4\",\n                    \"header\": \"Require Name of Sponsor/Administrator of the Master Program\",\n                    \"description\": \"Name of the Sponsor/Administrator of the Master Program \",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532bfe81bf0450013804dad\",\n                    \"header\": \"Verify Existence of Sub-Limits Master\",\n                    \"description\": \"Are there any sub-limits that have not been detailed in the documents provided?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532b3f51bf0450013711e65\",\n                    \"header\": \"Verify Master Program Annual Audit\",\n                    \"description\": \"Is the program audited annually by the insurance carriers that participate in the program?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c8791bf04500138905d7\",\n                    \"header\": \"Verify Retaining Any of the Risk-Payment of Claims within A Self-Insured Retention Master\",\n                    \"description\": \"Does the program retain any of the risk-payment of claims within a Self-Insured retention maintained by the Master Program (not the property)?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c57d1bf045001385b998\",\n                    \"header\": \"Verify Existence of Self-Insured Retention Fund\",\n                    \"description\": \"If the program has a SIR, how is it managed and administered? For example, is there an account that maintains a limit equal to the SIR? Is there a third-party administrator?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a4bb1bf04500134ac1e4\",\n                    \"header\": \"Verify Master Program Age\",\n                    \"description\": \"How long has the program been in business?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a9721bf04500135a0938\",\n                    \"header\": \"Verify the Master Program Spread of Risk\",\n                    \"description\": \"How do they determine and administer the spread of the risk?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"65329f261bf04500133d2eb4\",\n                    \"header\": \"Verify No Overall Loss Limit Master\",\n                    \"description\": \"Are the limits specific for each covered property with no overall loss limit?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c67f1bf04500138658dc\",\n                    \"header\": \"Require Number of Properties under the Master Program\",\n                    \"description\": \"What is the number of properties covered under this program?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532a8671bf0450013563985\",\n                    \"header\": \"Require Number of States the Master Program Operates\",\n                    \"description\": \"In how many states does the Master Program retain property?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c28b1bf0450013830141\",\n                    \"header\": \"Verify the States with an Insurable Value in Excess of the Limit Master\",\n                    \"description\": \"Please list the States with an insurable value in excess of the limit of insurance\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6532c9e91bf04500138c6727\",\n                    \"header\": \"Verify Lender Designation for Master Program\",\n                    \"description\": \"Are the lenders all listed separately as mortgagee, lender's loss payable an additional insured for each property according to their interest?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"653573ce1bf0450013b06d22\",\n                    \"header\": \"Verify Policy Violation Impact Master\",\n                    \"description\": \"If one member violates a policy condition, is there any impact on the program for the rest of the members?\",\n                    \"peril\": null,\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"653575701bf0450013b07095\",\n                    \"header\": \"Require Master Program Pertinent Information\",\n                    \"description\": \"Please include any other pertinent information regarding the Master Program\",\n                    \"peril\": null,\n                    \"passed\": false\n                }\n            ]\n        },\n        \"blanket\": null,\n        \"liability\": {\n            \"label\": \"Liability Requirements\",\n            \"rules\": [\n                {\n                    \"id\": \"6397d6526e899e0012a48ea8\",\n                    \"header\": \"Sufficient General Liability Occurrence Limit\",\n                    \"description\": \"Occurrence Limit of Liability must be at least $1,000,000.\",\n                    \"peril\": {\n                        \"id\": \"653633033ee3a40016d5f53e\",\n                        \"key\": \"generalLiability\",\n                        \"name\": \"General Liability\"\n                    },\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6377e6406c98d20012fee218\",\n                    \"header\": \"Sufficient General Liability Aggregate Limit\",\n                    \"description\": \"Aggregate Limit of Liability must be at least $2,000,000.\",\n                    \"peril\": {\n                        \"id\": \"653633033ee3a40016d5f53e\",\n                        \"key\": \"generalLiability\",\n                        \"name\": \"General Liability\"\n                    },\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"6397f0516e899e0012a4a46f\",\n                    \"header\": \"Sufficient General Liability Deductible\",\n                    \"description\": \"Max allowable General Liability deductible is $5,000.\",\n                    \"peril\": {\n                        \"id\": \"653633033ee3a40016d5f53e\",\n                        \"key\": \"generalLiability\",\n                        \"name\": \"General Liability\"\n                    },\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"639772616e899e0012a42c51\",\n                    \"header\": \"Require Umbrella/Excess Liability Coverage\",\n                    \"description\": \"Umbrella/Excess liability coverage is required.\",\n                    \"peril\": {\n                        \"id\": \"653633033ee3a40016d5f53f\",\n                        \"key\": \"umbrellaLiability\",\n                        \"name\": \"Umbrella Liability\"\n                    },\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"63980dd56e899e0012a4c518\",\n                    \"header\": \"Sufficient Umbrella/Excess Liability Limit\",\n                    \"description\": \"Umbrella/Excess liability limit must be at least\\n\\n\\n$1M\\n\\n.\",\n                    \"peril\": {\n                        \"id\": \"653633033ee3a40016d5f53f\",\n                        \"key\": \"umbrellaLiability\",\n                        \"name\": \"Umbrella Liability\"\n                    },\n                    \"passed\": false\n                },\n                {\n                    \"id\": \"639800346e899e0012a4b6a9\",\n                    \"header\": \"Sufficient Umbrella/Excess Deductible\",\n                    \"description\": \"Max Allowable Umbrella/Excess Deductible is $5,000.\",\n                    \"peril\": {\n                        \"id\": \"653633033ee3a40016d5f53f\",\n                        \"key\": \"umbrellaLiability\",\n                        \"name\": \"Umbrella Liability\"\n                    },\n                    \"passed\": false\n                }\n            ]\n        },\n        \"assets\": [\n            {\n                \"id\": \"6852fb2f9c8ebe5a6504b033\",\n                \"label\": \"128 Wooster Street,New York,NY,10012\",\n                \"rules\": [\n                    {\n                        \"id\": \"639779326e899e0012a434dd\",\n                        \"header\": \"Verify Property Address\",\n                        \"description\": \"Property address must be listed on the binding documents: 128 Wooster Street,New York,NY,10012\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397f2aa6e899e0012a4a78a\",\n                        \"header\": \"Sufficient Property Limit\",\n                        \"description\": \"Property limit must be at least \\r\\n$123,000\\r\\n\\r\\n\\r\\n\\r\\n.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"key\": \"property\",\n                            \"name\": \"Property\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397ed6a6e899e0012a4a1b6\",\n                        \"header\": \"Sufficient Property Coverage Deductible\",\n                        \"description\": \"Max Allowable Property Deductible is \\n\\n5%\\n\\n.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"key\": \"property\",\n                            \"name\": \"Property\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"639765c16e899e0012a42504\",\n                        \"header\": \"Sufficient Business Income Coverage\",\n                        \"description\": \"Business Income Limit must be at least\\n$1,230,000\\n OR be on an Actual Loss Sustained (ALS) basis for 12 months.\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"651d7fc6c610f50012ce96f5\",\n                        \"header\": \"Verify Roof Payout Basis\",\n                        \"description\": \"Roofs on the property must be covered on a Replacement Cost Value Basis\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"63d94bcb2724f70012dbfdb0\",\n                        \"header\": \"Confirmation of No Premium Financing-test\",\n                        \"description\": \"Insurance that is Premium Financed is not accepted. \",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397df956e899e0012a49ace\",\n                        \"header\": \"Require a Property Loss Payout Basis \",\n                        \"description\": \"\\n\\nPolicy must pay out on RCV basis for the renovation costs/materials and ACV for the existing structure.\\n\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397b7f66e899e0012a48200\",\n                        \"header\": \"Prevent Coinsurance Trigger\",\n                        \"description\": \"If there is a coinsurance clause, please specify the coinsurance %, or an Agreed Value Endorsement will be sufficient\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"639775936e899e0012a42f25\",\n                        \"header\": \"Require Wind / Hail Coverage\",\n                        \"description\": \"Wind/Hail Coverage is required.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"key\": \"windHail\",\n                            \"name\": \"Wind Hail\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397e16a6e899e0012a49c9e\",\n                        \"header\": \"Sufficient Wind / Hail Coverage Limit \",\n                        \"description\": \"Wind/hail limit must be at least \\r\\n\\r\\n$123,000\\r\\n\\r\\n.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"key\": \"windHail\",\n                            \"name\": \"Wind Hail\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397f8146e899e0012a4b085\",\n                        \"header\": \"Sufficient Wind / Hail Deductible\",\n                        \"description\": \"Max allowable Wind/Hail Deductible is\\r\\n5%\\r\\n\\r\\n.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"key\": \"windHail\",\n                            \"name\": \"Wind Hail\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"639787306e899e0012a446c1\",\n                        \"header\": \"Require Named Storm Coverage \",\n                        \"description\": \"Named Storm coverage is required.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"key\": \"namedStorm\",\n                            \"name\": \"Named Storm\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397df3a6e899e0012a49948\",\n                        \"header\": \"Sufficient Named Storm Coverage Limit\",\n                        \"description\": \"Named Storm limit must be at least\\n\\n$123,000\\n\\n.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"key\": \"namedStorm\",\n                            \"name\": \"Named Storm\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"6397fa006e899e0012a4b1a1\",\n                        \"header\": \"Sufficient Named Storm Deductible \",\n                        \"description\": \"Max Allowable Named Storm Deductible is\\r\\n\\r\\n5%\\r\\n\\r\\n.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"key\": \"namedStorm\",\n                            \"name\": \"Named Storm\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"64fb5841dfc9c00012719554\",\n                        \"header\": \"Require Policy Form Basis (Agency)\",\n                        \"description\": \"Earthquake or Professional Liability Coverage can be written on a Claims Maded basis, otherwise policies must be written on a Per Occurence Basis.\\n\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"63d941342724f70012da2f21\",\n                        \"header\": \"Require Finalized Insurance Documents\",\n                        \"description\": \"Finalized insurance documents are required for approval.\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"63978e166e899e0012a44af0\",\n                        \"header\": \"Require a Payment Method\",\n                        \"description\": \"\\n\\n\\nPaid in Full Receipt is required.\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"658489f09661930016cdbb50\",\n                        \"header\": \"Required Asset Fields\",\n                        \"description\": \"address \\n\\nrcv \\n\\ncase amount \\n\\negi \\n\\nlevel of construction \\n\\nflood zone check\\n\\nnumber of buildings in an SFHA \\n\\ndoes the borrower have employees \\n\\ndoes the borrower own auto \\n\\nsel%\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65946ed400ac680016d06664\",\n                        \"header\": \"Required LOC Fields\",\n                        \"description\": \"hello\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659c283900ac680016a5070c\",\n                        \"header\": \"Sufficient Property Coverage Deductible (Encore SFR)\",\n                        \"description\": \"The Property Deductible must not exceed \\n$10,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"key\": \"property\",\n                            \"name\": \"Property\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d632000ac68001605a942\",\n                        \"header\": \"Sufficient Wind/Hail Limit (Encore SFR)\",\n                        \"description\": \"Wind/Hail Limit must be greater than or equal to \\n$123,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"key\": \"windHail\",\n                            \"name\": \"Wind Hail\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d679f00ac6800160c14b8\",\n                        \"header\": \"Sufficient Builder's Risk Limit (Encore SFR)\",\n                        \"description\": \"Builder's Risk Limit must be greater than or equal to \\n$123,000\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d748d00ac6800162012a4\",\n                        \"header\": \"Sufficient Earthquake Deductible (Encore SFR)\",\n                        \"description\": \"Earthquake Deductible must not exceed\\n$135,300\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"key\": \"earthquake\",\n                            \"name\": \"Earthquake\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"657b65209661930016d7d21b\",\n                        \"header\": \"Require Vacancy Permit Endorsement\",\n                        \"description\": \"Policy requires a Vacancy Permit Endorsement.\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65a046e5fe41a600165beca0\",\n                        \"header\": \"Sufficient Boiler and Machinery / Equipment Breakdown Deductible (Encore LOC)\",\n                        \"description\": \"Boiler and Machinery Deductible must not exceed \\n$25,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"key\": \"boilerMachinery\",\n                            \"name\": \"Boiler & Machinery\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"66158323726b977eae0cf0ab\",\n                        \"header\": \"Required Asset Fields Merchants Non-Construction\",\n                        \"description\": \"required fields \",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"669682aa8fb24dee6b29a695\",\n                        \"header\": \"Required Asset Fields Barings Affordable Housing \",\n                        \"description\": \"RCV, UPB, EGI, Number of Floord, Zoning, HVAC, SEL-475, Flood Zone, EGI FLood, Is Alcohol Served or Sold by Borrower, its Agents, or Affiliates?, auto, workers \",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d625900ac68001604f6e5\",\n                        \"header\": \"Sufficient Property Limit (Encore SFR)\",\n                        \"description\": \"Property limit must be greater than or equal to \\n$123,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"key\": \"property\",\n                            \"name\": \"Property\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d63b400ac680016068042\",\n                        \"header\": \"Sufficient Named Storm Coverage Limit (Encore SFR)\",\n                        \"description\": \"Named Storm Limit must be greater than or equal to \\n$123,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"key\": \"namedStorm\",\n                            \"name\": \"Named Storm\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d71f400ac6800161c51c1\",\n                        \"header\": \"Sufficient Named Storm Deductible (Encore SFR)\",\n                        \"description\": \"Named Storm Deductible must not exceed \\n$135,300\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f536\",\n                            \"key\": \"namedStorm\",\n                            \"name\": \"Named Storm\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d73d700ac6800161f1d1e\",\n                        \"header\": \"Sufficient Wind/Hail Deductible (Encore SFR)\",\n                        \"description\": \"Wind/Hail Deductible must not exceed \\n$135,300\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f537\",\n                            \"key\": \"windHail\",\n                            \"name\": \"Wind Hail\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659d750300ac680016206fcd\",\n                        \"header\": \"Sufficient Earthquake Limit (Encore SFR)\",\n                        \"description\": \"Earthquake Limit must be greater than or equal to \\n$151,290\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f546\",\n                            \"key\": \"earthquake\",\n                            \"name\": \"Earthquake\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65a029cf0d60150016848ca4\",\n                        \"header\": \"Sufficient Terrorism Property Limit (Encore LOC)\",\n                        \"description\": \"Terrorism Property Limit must be greater than or equal to \\n$123,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"key\": \"terrorismProperty\",\n                            \"name\": \"Terrorism Property\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65a03c580d601500169bf7b6\",\n                        \"header\": \"Sufficient Builder's Risk Limit (Encore LOC)\",\n                        \"description\": \"Builder's Risk Limit Must be greater than or equal to \\n$123,000.\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65a044abfe41a600165b346a\",\n                        \"header\": \"Sufficient Builder's Risk Deductible (Encore LOC)\",\n                        \"description\": \"Builder's Risk Deductible must not exceed\\n$10,000\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65a04750fe41a600165c1135\",\n                        \"header\": \"Sufficient Terrorism Property Coverage Deductible (Encore LOC)\",\n                        \"description\": \"Terrorism Property Coverage Deductible must not exceed\\n$25,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f538\",\n                            \"key\": \"terrorismProperty\",\n                            \"name\": \"Terrorism Property\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"659c267300ac680016a3f9d4\",\n                        \"header\": \"Sufficient Builder's Risk Deductible (Encore SFR)\",\n                        \"description\": \"The Builder's Risk Deductible must not exceed \\n$10,000\\n\",\n                        \"peril\": null,\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65a028d70d60150016836493\",\n                        \"header\": \"Sufficient Boiler & Machinery / Equipment Breakdown Limit (Encore LOC)\",\n                        \"description\": \"Boiler & Machinery / Equipment Breakdown Limit must be at least\\n$123,000\\n.\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f534\",\n                            \"key\": \"boilerMachinery\",\n                            \"name\": \"Boiler & Machinery\"\n                        },\n                        \"passed\": false\n                    },\n                    {\n                        \"id\": \"65a04647fe41a600165bd94d\",\n                        \"header\": \"Sufficient Property Deductible (Encore LOC)\",\n                        \"description\": \"Property Deductible must not exceed\\n$10,000\\n\",\n                        \"peril\": {\n                            \"id\": \"653633033ee3a40016d5f532\",\n                            \"key\": \"property\",\n                            \"name\": \"Property\"\n                        },\n                        \"passed\": false\n                    }\n                ],\n                \"assetType\": {\n                    \"id\": \"677cfe421840abee910c5788\",\n                    \"name\": \"TA-Postman-Multi-Family\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"fe145b3c-8b51-4a64-a155-0e5accf2d9bd"},{"name":"Users","event":[{"listen":"test","script":{"id":"26d125a9-fe8a-444c-b599-cd054e25662e","exec":["const responseData = pm.response.json();","","pm.test(\"Response status code is 200\", function () {","  pm.response.to.have.status(200);","});",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"b204cc05-72a7-47a2-8c0b-0f027361bb2c","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5abd6165-370d-4ee2-bd2d-d3be660ae572","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/users","description":"<h2 id=\"get-users\">Get Users</h2>\n<p>This endpoint retrieves a list of users from the system.<br />User can be assigned to new and or renewal case type.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<ul>\n<li><strong>GET</strong></li>\n</ul>\n<h3 id=\"endpoint\">Endpoint</h3>\n<ul>\n<li><code>https://api-v2-test.tryadvocate.com/rest/users</code></li>\n</ul>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>This endpoint does not require any query parameters.</p>\n<h3 id=\"filtering\">Filtering</h3>\n<p>You can filter response by serviceType<br />by adding this parameter to the endpoint<br />?serviceType[eq]=renewal</p>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The response will be in JSON format and includes the following structure:</p>\n<ul>\n<li><p><strong>meta</strong>: An object containing metadata about the response.</p>\n<ul>\n<li><p><strong>total</strong>: The total number of users available.</p>\n</li>\n<li><p><strong>limit</strong>: The maximum number of users returned in the response.</p>\n</li>\n<li><p><strong>offset</strong>: The starting point for the returned users.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>data</strong>: An array of user objects, where each object contains:</p>\n<ul>\n<li><p><strong>id</strong>: The unique identifier for the user.</p>\n</li>\n<li><p><strong>email</strong>: The email address of the user.</p>\n</li>\n<li><p><strong>fullName</strong>: The full name of the user.</p>\n</li>\n<li><p><strong>role</strong>: The role assigned to the user.</p>\n</li>\n<li><p><strong>serviceTypes</strong>: An array of service types associated with the user.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"meta\": {\n    \"total\": 0,\n    \"limit\": 0,\n    \"offset\": 0\n  },\n  \"data\": [\n    {\n      \"id\": \"\",\n      \"email\": \"\",\n      \"fullName\": \"\",\n      \"role\": \"\",\n      \"serviceTypes\": [\"\"]\n    }\n  ]\n}\n\n</code></pre>\n<p>This structure allows clients to understand how many users are available and provides detailed information about each user in the system.</p>\n","urlObject":{"path":["rest","users"],"host":["https://api-v2-test.tryadvocate.com"],"query":[],"variable":[]}},"response":[{"id":"ef72179f-7fe4-4ee4-957d-b9e5ad78d7ea","name":"Users Response","originalRequest":{"method":"GET","header":[{"key":"X-Advocate-Version","value":"2025-06-30","type":"text"}],"url":"https://api-v2-test.tryadvocate.com/rest/users"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Content-Security-Policy","value":"default-src 'self';style-src 'self' 'unsafe-inline' fonts.googleapis.com;img-src 'self' data: validator.swagger.io data: apollo-server-landing-page.cdn.apollographql.com;script-src 'self' https: 'unsafe-inline';manifest-src 'self' apollo-server-landing-page.cdn.apollographql.com;frame-src 'self' sandbox.embed.apollographql.com;base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none'"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"vary","value":"Origin"},{"key":"x-ratelimit-limit","value":"200"},{"key":"x-ratelimit-remaining","value":"190"},{"key":"x-ratelimit-reset","value":"50"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"375"},{"key":"Date","value":"Thu, 09 Oct 2025 12:58:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=72"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"meta\": {\n        \"total\": 2,\n        \"limit\": 15,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": \"683570cf426a1ffa963d07a6\",\n            \"email\": \"yourUser@tryadvocate.com\",\n            \"fullName\": \"User Name\",\n            \"role\": \"lenderReviewer\",\n            \"serviceTypes\": [\n                \"renewal\"\n            ]\n        },\n        {\n            \"id\": \"67a4d18a2546e7433997c9c2\",\n            \"email\": \"yourUser@tryadvocate.com\",\n            \"fullName\": \"User Name\",\n            \"role\": \"lenderReviewer\",\n            \"serviceTypes\": [\n                \"new\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"5abd6165-370d-4ee2-bd2d-d3be660ae572"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Your Token"}]}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":["pm.request.headers.upsert({","    key: 'User-Agent',","    value: 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36'","});","","function getISODate(offsetDays = 0) {","    // Get the current date","    const now = new Date();","    ","    // Adjust the date by the offset (number of days)","    now.setDate(now.getDate() + offsetDays);","","    // Convert the date to ISO string format","    const isoString = now.toISOString();","","    return isoString;","}","","function getFormattedDate(offsetDays = 0) {","    // Get the current date","    const now = new Date();","    ","    // Adjust the date by the offset (number of days)","    now.setDate(now.getDate() + offsetDays);","","    // Extract year, month, and day","    const year = now.getFullYear();","    const month = String(now.getMonth() + 1).padStart(2, '0'); // Months are zero-indexed","    const day = String(now.getDate()).padStart(2, '0');","","    // Construct the formatted date string","    const formattedDate = `${year}-${month}-${day}`;","","    return formattedDate;","}","","pm.collectionVariables.set('expectedResponseTime', 4000)","pm.collectionVariables.set('currentDate', getISODate(0))","pm.collectionVariables.set('currentFormattedDate', getFormattedDate(0))","pm.collectionVariables.set('futureDate30Plus', getISODate(30))","pm.collectionVariables.set('futureDate180Plus', getISODate(180))"],"id":"9fbff40a-d0ec-4c8e-9452-47d377a2844e"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"50259880-7a1e-4fe9-94e1-4c23361f68df"}}],"variable":[{"key":"assetId","value":"66ffb0b7d606ee60bfd67788"},{"key":"assetTypeId","value":"60db1c67687e130004f8885e"},{"key":"insuredGroupId","value":"6750239ebc0b293e7c24ec3c"},{"key":"brokerId","value":"6735cca449af9f577604219f"},{"key":"brokerageId","value":"6735cc9908c354b262b13f0a"},{"key":"categoryId","value":""},{"key":"documentId","value":"6750239dbc0b293e7c24eba4"},{"key":"caseId","value":"66ab5b259d7cf59f63d28ae9"},{"key":"insuranceContact","value":""},{"key":"insuranceContactId","value":"65eecdbf322fdc969c64b990"},{"key":"certificateHolderId","value":"65017a51b6f71a00115aa3f5"},{"key":"policyId","value":"674ec06ff814711c99d02e74"},{"key":"borrowerId","value":"65b67a17c0c9c80a80e87e71"},{"key":"assetCaseId","value":""},{"key":"displayName","value":""},{"key":"fieldTypeId","value":""},{"key":"streetAddress","value":"138 Wooster Street"},{"key":"documents","value":""},{"key":"city","value":"New York"},{"key":"state","value":"NY"},{"key":"postalCode","value":"10012"},{"key":"country","value":"US"},{"key":"systemStreetAddress","value":""},{"key":"systemCityAddress","value":""},{"key":"systemStateAddress","value":""},{"key":"systemPostalCodeAddress","value":""},{"key":"systemCountryAddress","value":""},{"key":"formattedAddress","value":""},{"key":"randomCaseId","value":"965255386-949920728"},{"key":"randomBorrowerId","value":"534915727-871366963"},{"key":"newTypeCaseId","value":"66aa0789d4ea36e73f186c56"},{"key":"externalId","value":"965255386-949920728"},{"key":"signedUrl","value":"signedUrl"},{"key":"directUploadKey","value":"directUploadKey"},{"key":"randomBorrowerGroupNr","value":"754661038-757249367"},{"key":"randomBorrowerICNumber","value":"294518877-731457285"},{"key":"randomBrokerICNumber","value":"853947811-667789131"},{"key":"randomOtherICNumber","value":"120115599-910497939"},{"key":"renewalCaseId","value":"66aa0455d4ea36e73f17f7ef"},{"key":"newCase","value":"newCase"},{"key":"renewal","value":"renewal"},{"key":"newCaseNoDocName","value":"New-Case-RestAPICase No Docs"},{"key":"newCaseWithDocName","value":"New-Case-RestAPICase Docs"},{"key":"isEscrowFalse","value":"false"},{"key":"isEscrowTrue","value":"true"},{"key":"addressFieldTypeId","value":"608701fdf2e8e800041efe21"},{"key":"currentDate","value":"2024-12-04T10:15:24.282Z"},{"key":"futureDate30Plus","value":"2025-01-03T10:15:24.282Z"},{"key":"futureDate180Plus","value":"2025-06-02T09:15:24.282Z"},{"key":"currentFormattedDate","value":"2024-12-04"},{"key":"newCaseRefId","value":"966676584-635294065"},{"key":"newCaseNoDocId","value":"6750238dbc0b293e7c24d613"},{"key":"newCaseDocCaseId","value":"6750239bbc0b293e7c24e8db"},{"key":"newRenewalFutureCaseId","value":"67502392bc0b293e7c24dce0"},{"key":"newRenewalAuditNowCaseId","value":"67502395bc0b293e7c24e1e1"},{"key":"newCaseNoDocRefId","value":"276043314-647816376"},{"key":"EditedBorrowerName","value":"EditedBorrowerName-104503594"},{"key":"caseIdWithPolicy","value":"674993c53eb1c51bcae4d905"},{"key":"policyInsuranceContactID","value":"67502398bc0b293e7c24e773"},{"key":"addedDocumentId","value":"67502399bc0b293e7c24e780"},{"key":"host","value":"https://api-v2-test.tryadvocate.com"},{"key":"accessToken","value":"Your Token"},{"key":"externalIdFiltering","value":"965255386-949920728"},{"key":"firstCaseIdInARow","value":"6750239bbc0b293e7c24e8db"},{"key":"expectedResponseTime","value":4000},{"key":"editedname","value":"Edit Case Name Test 2024-12-04T09:40:58.693Z"},{"key":"randomMCTitle","value":"mc title-149288805"},{"key":"newlyCreatedMcId","value":"675023a3bc0b293e7c24f130"},{"key":"caseIdWithAddedDocument","value":"674993c53eb1c51bcae4d905"},{"key":"certificateHolderId","value":"","disabled":true},{"key":"certificateHolders","value":""},{"key":"secondAssetIdPostClose","value":"","type":"string"},{"key":"firstAssetIdPostClose","value":"","type":"string"},{"key":"newCaseWithDocNameWithMeta","value":"New-Case-RestAPICase Docs With Meta","type":"string"},{"key":"renewalAuditNowName","value":"Renewal-Case-RestAPICase Docs Audit Name","type":"string"},{"key":"renewalCaseName","value":"Renewal-Case-RestAPICase Docs Renewal Name","type":"string"},{"key":"PostmanBorrowerId","value":"","type":"string"},{"key":"PostmanICType","value":"","type":"string"},{"key":"PostmanICId","value":"","type":"string"},{"key":"CorporateBorrowerId","value":"","type":"string"},{"key":"IndividualBorrowerId","value":"","type":"string"},{"key":"BrokerPostmanICType","value":"","type":"string"},{"key":"BrokerPostmanICEmail","value":"","type":"string"},{"key":"BrokerPostmanICId","value":"","type":"string"},{"key":"OtherPostmanICType","value":"","type":"string"},{"key":"OtherPostmanICEmail","value":"","type":"string"},{"key":"OtherPostmanICId","value":"","type":"string"},{"key":"CertificateHolderThreeName","value":"","type":"string"},{"key":"CertificateHolderThree","value":"","type":"string"},{"key":"CertificateHolderTwoName","value":"","type":"string"},{"key":"CertificateHolderTwo","value":"","type":"string"},{"key":"CertificateHolderOneName","value":"","type":"string"},{"key":"CertificateHolderOne","value":"","type":"string"},{"key":"SingleFamilyAssetTypeId","value":"","type":"string"},{"key":"MultiFamilyAssetTypeId","value":"","type":"string"},{"key":"MixedUseAssetTypeId","value":"","type":"string"},{"key":"CondoBuildingAssetTypeId","value":"","type":"string"},{"key":"ProgramPreCloseMultiFamilyId","value":"","type":"string"},{"key":"ProgramPostCloseMultiFamilyId","value":"","type":"string"},{"key":"ProgramNewRenewalMultiFamilyId","value":"","type":"string"},{"key":"ProgramNewRenewalAssetsId","value":"677cfe471840abee910c8405","type":"string"},{"key":"LenderName","value":"","type":"string"},{"key":"LenderID","value":"","type":"string"},{"key":"packagePolicy","value":"","type":"string"},{"key":"productTypePropertyId","value":"","type":"string"},{"key":"liabilityTypePropertyId","value":"","type":"string"},{"key":"generalCommercialPackagePolicyId","value":"","type":"string"},{"key":"quotesPolicy","value":"","type":"string"},{"key":"multiAssetsProgramId","value":""},{"key":"insuranceContactsId","value":""},{"key":"newPreCloseWithNoDocsCaseId","value":""},{"key":"certificateHolderId","value":""},{"key":"newPreCloseWithDocsCaseId","value":""},{"key":"assetIdPreClose","value":""},{"key":"newPostCloseAuditNowCaseId","value":""},{"key":"newPostCloseAuditNowCaseRefId","value":""},{"key":"assetIdPostClose","value":""},{"key":"newPostCloseRenewalCaseId","value":""},{"key":"firstAssetPostCloseRenewalId","value":""},{"key":"secondAssetPostCloseRenewalId","value":""},{"key":"commercialPropertyPolicy","value":""},{"key":"policyIdQuotes","value":""},{"key":"productType","value":""},{"key":"PostmanICEmail","value":""}]}